我正在尝试连接到mysql并使用命令rake db:create 。它显示我错误
rake aborted! No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb) /Library/Ruby/Gems/2.0.0/gems/rake-11.3.0/exe/rake:27:in `<top (required)>' (See full trace by running task with --trace)
我也尝试了rake db:migrate以及同样的错误。
答案 0 :(得分:1)
看起来你错过了一个rake文件。将此代码添加到应用程序根目录中名为Rakefile的文件中。 编辑:按应用名称替换YourApp
require File.expand_path('../config/application', __FILE__)
YourApp::Application.load_tasks