diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-26 00:04:04 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-26 00:04:04 +0000 |
commit | ab7c7a8edd943e178064b2b79c75fb60781eea3e (patch) | |
tree | 40e83c8a00667e50edb468e7b2e8bde88e7ca4ba /activesupport/Rakefile | |
parent | 09751e57b0f56153ba7a3038021e741774e0b63d (diff) | |
download | rails-ab7c7a8edd943e178064b2b79c75fb60781eea3e.tar.gz rails-ab7c7a8edd943e178064b2b79c75fb60781eea3e.tar.bz2 rails-ab7c7a8edd943e178064b2b79c75fb60781eea3e.zip |
Fixed rdoc.options use all over (closes #3639) [andy@tinnedfruit.org]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3656 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r-- | activesupport/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile index d49fea4d24..d77a24f72b 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -29,7 +29,7 @@ dist_dirs = [ "lib", "test"] Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails" - rdoc.options << '--line-numbers --inline-source --main README' + rdoc.options << '--line-numbers' << '--inline-source' << '--main README' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README', 'CHANGELOG') rdoc.rdoc_files.include('lib/active_support.rb') |