From ae3989a3048c7ec4319a8a105aad092fa6cc5a97 Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Wed, 29 Feb 2012 13:09:42 -0500 Subject: [PATCH] Modified to use the rdoc gem --- Gemfile | 1 + Rakefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index bf09be0b4..e8a256aff 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,7 @@ source 'http://rubygems.org' group :development do gem 'jeweler', '~> 1.5.1' gem 'rspec', '~> 2.4' + gem 'rdoc' if ENV['RAILS_GEM_VERSION'] gem 'activerecord', "=#{ENV['RAILS_GEM_VERSION']}" diff --git a/Rakefile b/Rakefile index e757684e7..f67c5124a 100644 --- a/Rakefile +++ b/Rakefile @@ -35,7 +35,7 @@ end task :default => :spec -require 'rake/rdoctask' +require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : ""