我刚开始做一个项目,我已经根据项目的要求配置了我的系统,即
rails v => 2.3.11
ruby v => 1.8.7
当我运行命令“rake db:create”时出现错误
rake aborted!
no such file to load -- rake/rdoctask
/home/jeet/Desktop/Projects/myapp/Rakefile:8
在这里我添加了 Rakefile 的内容
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'tasks/rails'
我已经检查了这个的答案,但它对我不起作用。
请建议我一个更好的解决方案