If i define a few gems in my config/environments/test.rb file like this:
config.gem "rspec" config.gem "rspec-rails" config.gem "mocha"
and then run 'rake gems:install RAILS_ENV=test'
I get the following error:
Missing these required gems: mocha
Run rake gems:install
to install the missing gems.
however if I run rake gems:install like it says it will continue to recurse like this forever.
How do I actually get the gems to install using rake (not gem install)?
thanks!