0

我刚开始做一个项目,我已经根据项目的要求配置了我的系统,即

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'

我已经检查了这个的答案但它对我不起作用。

请建议我一个更好的解决方案

4

1 回答 1

0

我已经看到了同样的问题。

可能的解决方案:通过将 gem 添加'rdoc'到我的 Gemfile 中,然后运行bundle install​​.

于 2012-11-30T15:19:11.920 回答