I’m trying to start my rails server with “rails server”. I am getting the following error.
Could not find rake-0.9.2.2 in any of the sources
Run bundle install to install missing gems.
when I use gems, it say it is updated. Am I missing some type of path?
I am using MAC OSX Lion with the newest version of Ruby, Rake, Rails.
Run
bundle installto make sure all the bundled gems are installed and available to the project.Then try starting the server with
bundle exec rails server– it’s possible you’ve got the rake gem installed at the system level at a slightly different version level than what rails want. If you run rails viabundle exec, it’ll set everything up for you