aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/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 /actionpack/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 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 3eb4408f9f..d67c6f2410 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -1,8 +1,5 @@
-gem 'rdoc', '>= 2.5.10'
-require 'rdoc'
require 'rake'
require 'rake/testtask'
-require 'rdoc/task'
require 'rake/packagetask'
require 'rake/gempackagetask'
@@ -36,24 +33,6 @@ Rake::TestTask.new(:test_active_record_integration) do |t|
t.test_files = Dir.glob("test/activerecord/*_test.rb")
end
-# Genereate the RDoc documentation
-
-RDoc::Task.new { |rdoc|
- rdoc.rdoc_dir = 'doc'
- rdoc.title = "Action Pack -- On rails from request to response"
- rdoc.options << '--charset' << 'utf-8'
- rdoc.options << '-f' << 'horo'
- rdoc.options << '--main' << 'README.rdoc'
- if ENV['DOC_FILES']
- rdoc.rdoc_files.include(ENV['DOC_FILES'].split(/,\s*/))
- else
- rdoc.rdoc_files.include('README.rdoc', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
- rdoc.rdoc_files.include(Dir['lib/**/*.rb'] -
- Dir['lib/*/vendor/**/*.rb'])
- rdoc.rdoc_files.exclude('lib/actionpack.rb')
- end
-}
-
spec = eval(File.read('actionpack.gemspec'))
Rake::GemPackageTask.new(spec) do |p|