You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error occurs because the 'nokogiri' gem is required, but is not installed by default. Although the gem has been added to the Gemfile, it needs to be added as a dependency in the gem spec.
To Duplicate Error
Create a brand new rails app and add the exact-target gem to the Gemfile and do a bundle install. Then go to the terminal and type in:
railsconsole
To Fix Error
Add the nokogiri dependency to the gemspec file.
s.add_dependency("nokogiri","~> 1.5.3")
The text was updated successfully, but these errors were encountered:
This error occurs because the 'nokogiri' gem is required, but is not installed by default. Although the gem has been added to the Gemfile, it needs to be added as a dependency in the gem spec.
To Duplicate Error
Create a brand new rails app and add the exact-target gem to the Gemfile and do a bundle install. Then go to the terminal and type in:
To Fix Error
Add the nokogiri dependency to the gemspec file.
The text was updated successfully, but these errors were encountered: