I’ve installed ruby on rails using “gem install rails” and got the message that rails has been successfully installed.
When I try to check that it has been installed successfully using “rails -v” I’m getting this error:
Could not find gem ‘jquery-rails (>= 0) ruby’ in any of the gem sources listed in your Gemfile.
Any ideas…?
I got this same error because I had installed ruby and rails via rvm, but without the libssl-dev package on ubunut 11.10. To remedy, I did the following:
cd to project directory
bundle install
Now I don’t seem to be getting the error anymore