p2w
p2w

Reputation: 37

Rake db:create failing in fresh rails 3.1 app

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

Answers (1)

Devin M
Devin M

Reputation: 9752

Use

gem "rake", "0.8.7"

In your gemfile, as stated rake 0.9.0 breaks a few things.

Upvotes: 3

Related Questions