aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/Rakefile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-08-20 13:30:31 +0200
committerXavier Noria <fxn@hashref.com>2010-08-20 13:30:31 +0200
commit43291469cb1587f8f48ce96d79487bbffa6bc29f (patch)
tree2e3505438f1e0e89002900dad791bec486bee96d /activemodel/Rakefile
parentf6222ead479fea61ecd3e786442a40e9acc1e898 (diff)
downloadrails-43291469cb1587f8f48ce96d79487bbffa6bc29f.tar.gz
rails-43291469cb1587f8f48ce96d79487bbffa6bc29f.tar.bz2
rails-43291469cb1587f8f48ce96d79487bbffa6bc29f.zip
deletes the rdoc task of each component, they are no longer published separately
Diffstat (limited to 'activemodel/Rakefile')
-rw-r--r--activemodel/Rakefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/activemodel/Rakefile b/activemodel/Rakefile
index 5142ee6715..0372c7a03e 100644
--- a/activemodel/Rakefile
+++ b/activemodel/Rakefile
@@ -1,8 +1,5 @@
dir = File.dirname(__FILE__)
-gem 'rdoc', '>= 2.5.10'
-require 'rdoc'
-
require 'rake/testtask'
task :default => :test
@@ -22,21 +19,6 @@ namespace :test do
end
end
-
-require 'rdoc/task'
-
-# Generate the RDoc documentation
-RDoc::Task.new do |rdoc|
- rdoc.rdoc_dir = "doc"
- rdoc.title = "Active Model"
- rdoc.options << '-f' << 'horo'
- rdoc.options << '--charset' << 'utf-8'
- rdoc.options << '--main' << 'README.rdoc'
- rdoc.rdoc_files.include("README.rdoc", "CHANGELOG")
- rdoc.rdoc_files.include("lib/**/*.rb")
-end
-
-
require 'rake/packagetask'
require 'rake/gempackagetask'