include the root README.rdoc as main page

This commit is contained in:
Xavier Noria 2010-07-24 00:35:22 +02:00
parent b50635a59f
commit 728ba209e7
1 changed files with 4 additions and 12 deletions

View File

@ -10,7 +10,7 @@ PROJECTS = %w(activesupport activemodel actionpack actionmailer activeresource a
desc 'Run all tests by default' desc 'Run all tests by default'
task :default => %w(test test:isolated) task :default => %w(test test:isolated)
%w(test test:isolated rdoc package gem).each do |task_name| %w(test test:isolated package gem).each do |task_name|
desc "Run #{task_name} task for all projects" desc "Run #{task_name} task for all projects"
task task_name do task task_name do
errors = [] errors = []
@ -67,18 +67,10 @@ RDoc::Task.new do |rdoc|
rdoc.title = "Ruby on Rails Documentation" rdoc.title = "Ruby on Rails Documentation"
rdoc.options << '-f' << 'horo' rdoc.options << '-f' << 'horo'
rdoc.options << '--charset' << 'utf-8' rdoc.options << '-c' << 'utf-8'
rdoc.options << '--main' << 'README.rdoc' rdoc.options << '-m' << 'README.rdoc'
# Workaround: RDoc assumes that rdoc.template can be required, and that rdoc.rdoc_files.include('README.rdoc')
# rdoc.template.upcase is a constant living in RDoc::Generator::HTML
# which holds the actual template class.
#
# We put 'doc/template' in the load path to be able to set the template
# to the string 'horo' and thus meet those RDoc's assumptions.
$:.unshift('doc/template')
rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : 'horo'
rdoc.rdoc_files.include('railties/CHANGELOG') rdoc.rdoc_files.include('railties/CHANGELOG')
rdoc.rdoc_files.include('railties/MIT-LICENSE') rdoc.rdoc_files.include('railties/MIT-LICENSE')