aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
Diffstat (limited to 'railties')
-rw-r--r--railties/Rakefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 2c5f676249..9ef6637c1e 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -1,8 +1,5 @@
-gem 'rdoc', '>= 2.5.10'
-require 'rdoc'
require 'rake'
require 'rake/testtask'
-require 'rdoc/task'
require 'rake/gempackagetask'
require 'date'
@@ -58,19 +55,6 @@ task :validate_guides do
ruby "guides/w3c_validator.rb"
end
-# Generate documentation ------------------------------------------------------------------
-
-RDoc::Task.new { |rdoc|
- rdoc.rdoc_dir = 'doc'
- rdoc.title = "Railties -- Gluing the Engine to the Rails"
- rdoc.options << '-f' << 'horo'
- rdoc.options << '--main' << 'README.rdoc'
- rdoc.options << '--charset' << 'utf-8'
- rdoc.rdoc_files.include('README.rdoc', 'CHANGELOG')
- rdoc.rdoc_files.include('lib/**/*.rb')
- rdoc.rdoc_files.exclude('lib/rails/generators/**/templates/*')
-}
-
# Generate GEM ----------------------------------------------------------------------------
spec = eval(File.read('railties.gemspec'))