Reputation: 8631
When I try to do rails server
and thin start
, both say: "Could not find activesupport-3.0.6 in any of the sources."
I have activesupport-3.0.7 installed. Do I need to revert so that activesupport matches my Rails version (3.0.6)?
Upvotes: 4
Views: 12183
Reputation: 124409
Run bundle install
in your rails directory (or change your Gemfile to require 3.0.7 instead of 3.0.6)
Also, when running the rails
commands, you can prefix it with bundle exec
to make sure it's using the correct version:
bundle exec rails server
Upvotes: 9
Reputation: 9605
Sounds like your Gemfile
and your installed gems are out-of-sync:
Which version of Rails is listed in your Gemfile
—3.0.6 or 3.0.7?
Have you run bundle install
?
Upvotes: 3