views:

377

answers:

2
A: 

I've never used Instant Rails but it sounds like you don't have an app created yet. In your rails_apps directory run

rails <app_name>

where app_name is the name of the app you want to create. This command will generate a new Rails app for you. The Rake commands can then be run from inside this new directory (this is the app directory that the book you mention is referring to).

Bob Nadler
theIV is right. Try 'gem update --system', that should get you the latest gems.
Bob Nadler
A: 

The second error is saying that you need a newer version of rake. Try gem install rake—sorry, I don't know if gem installation is different on Windows.

theIV