Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Could not find activesupport in any of the sources," even though activesupport is installed.

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)?

like image 309
Matthew Berman Avatar asked Dec 16 '22 14:12

Matthew Berman


1 Answers

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
like image 188
Dylan Markow Avatar answered May 08 '23 09:05

Dylan Markow