Reputation: 37
On the 3.1RC, I have created a new app, and when I try to run the db:create job I'm getting this:
[15:38][*********@***********:~/**********/db(master)]$ rake db:create
(in /Users/*********/*********)
rake aborted!
uninitialized constant Rake::DSL
any ideas appreciated.
Upvotes: 1
Views: 684
Reputation: 9752
Use
gem "rake", "0.8.7"
In your gemfile, as stated rake 0.9.0 breaks a few things.
Upvotes: 3