Reputation: 21
I'm currently using Ubuntu to run my ruby on rails applications, but I just got this error message: "Could not find gem 'ruby (= 2.0.0) ruby' in the gems available on this machine." every time I typed in "rails server". I tried to reinstall everything but it's still there. What does this even mean? The only gem for ruby is 0.1.0, why there is a 2.0.0 ruby gem? Thanks.
Upvotes: 1
Views: 1908
Reputation: 211720
Do you have a line in your Gemfile
like gem 'ruby', '=2.0.0'
?
It should be:
ruby "2.0.0"
Upvotes: 3