diff options
author | Xavier Noria <fxn@hashref.com> | 2010-07-24 00:35:22 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-07-24 00:35:22 +0200 |
commit | 728ba209e7ec3126848ec58cc1388e9eff8145e5 (patch) | |
tree | 5f89ae1feddc0553e9e980a5c76273c188495339 /Rakefile | |
parent | b50635a59f7d2fab2cdba348c4169536fbbb77f4 (diff) | |
download | rails-728ba209e7ec3126848ec58cc1388e9eff8145e5.tar.gz rails-728ba209e7ec3126848ec58cc1388e9eff8145e5.tar.bz2 rails-728ba209e7ec3126848ec58cc1388e9eff8145e5.zip |
include the root README.rdoc as main page
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 18 |
1 files changed, 5 insertions, 13 deletions
@@ -10,7 +10,7 @@ PROJECTS = %w(activesupport activemodel actionpack actionmailer activeresource a desc 'Run all tests by default' 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" task task_name do errors = [] @@ -67,18 +67,10 @@ RDoc::Task.new do |rdoc| rdoc.title = "Ruby on Rails Documentation" rdoc.options << '-f' << 'horo' - rdoc.options << '--charset' << 'utf-8' - rdoc.options << '--main' << 'README.rdoc' - - # Workaround: RDoc assumes that rdoc.template can be required, and that - # 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.options << '-c' << 'utf-8' + rdoc.options << '-m' << 'README.rdoc' + + rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('railties/CHANGELOG') rdoc.rdoc_files.include('railties/MIT-LICENSE') |