Reputation: 175
rails new my_app is throwing following error
An error occurred while installing rake 0.9.2.2 and bundle can not continue. Make sure that gem install rake -v '0.9.2.2' succeeds before bundling.
I've installed latest version of Ruby on Rails in window 7.
Upvotes: 1
Views: 105
Reputation: 11167
use rails new my_project
to generate your project. also run rails -v
to ensure rails is installed
Upvotes: 1