Seeing this?
|
1 |
rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+) |
Edit your Rakefile and change these lines:
|
1 2 3 |
require 'rake/rdoctask' Rake::RDocTask.new(:rdoc) do |rdoc| ... |
to look like this:
|
1 2 3 |
require 'rdoc/task' RDoc::Task.new do |rdoc| ... |
You may need to add gem 'rdoc' to your Gemfile, too. While you’re at it, you might want to add rdoc/ to your .gitignore, too