If I define several stones in the config / environment / test.rb file as follows:
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 the rake gke: install, as if he says that he will continue this procedure as always forever.
How do I get gems to install using rake (not gem install)?
thank!
source
share