Seeing this?
rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+)
Edit your Rakefile and change these lines:
require 'rake/rdoctask' Rake::RDocTask.new(:rdoc) do |rdoc| ...
to look like this:
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
Related posts:
- Creating acts_as_… gems for Rails 3.1.x
There are a lot of posts on how to build rubygems. With Rails 3.1, though, they’re all old and busted. The new hotness is built right into rails now. Just...... - Quick MacPorts Installation of Ruby on Rails
October 2010 update: I wrote this a while back, before I knew about RVM. The Ruby Version Manager has a bunch of features that makes it better than macports for...... - Rails 3.0.5 broke my routes and kicked my dog
We just upgraded AdGrok from Rails 3.0.4 to 3.0.5, which was released a couple days ago. This is a “patch release,” which according to the rules, has only backwards compatible...... - java rake db:migrate implementations
I was surprised that there were so many libraries that do the same thing — manage change in your database schema. Here’s what I’ve found so far: Liquibase (migrations are......