I've just upgraded to ruby 1.9.3 and rails 3.2.2. I'm trying to create this application:
rails new myapp -m https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-omniauth-template.rb -T -O
In the end of the installation it gives me the error:
The template [https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-omniauth-template.rb] could not be loaded. Error: You have already activated rake 0.9.2, but your Gemfile requires rake 0.9.2.2. Using bundle exec may solve this.
If i do RVM gem list or gem list I get two versions of rake:
rake (0.9.2.2, 0.9.2)
How do I tell RVM or whatever it is I have to tell, to use ONLY the latest?
gem uninstall? Or follow the error message and use bundle exec? – Tass Mar 19 '12 at 13:52rvm removeis for removing Ruby interpreters, their source code and related gemsets.gem uninstallis for uninstalling gems. It looks to me like you're a bit confused about which commands belong torubyorgemand which torvm. (It can get a bit confusing if you primarily meet Ruby only via an environment manager.) – Telemachus Mar 20 '12 at 15:49