diff options
author | Xavier Noria <fxn@hashref.com> | 2010-08-20 13:30:31 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-20 13:30:31 +0200 |
commit | 43291469cb1587f8f48ce96d79487bbffa6bc29f (patch) | |
tree | 2e3505438f1e0e89002900dad791bec486bee96d /activesupport | |
parent | f6222ead479fea61ecd3e786442a40e9acc1e898 (diff) | |
download | rails-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 'activesupport')
-rw-r--r-- | activesupport/Rakefile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile index 54e9674dd8..d117ca6356 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -1,7 +1,4 @@ -gem 'rdoc', '>= 2.5.10' -require 'rdoc' require 'rake/testtask' -require 'rdoc/task' require 'rake/gempackagetask' task :default => :test @@ -21,19 +18,6 @@ end # Create compressed packages dist_dirs = [ "lib", "test"] -# Genereate the RDoc documentation - -RDoc::Task.new { |rdoc| - rdoc.rdoc_dir = 'doc' - rdoc.title = "Active Support -- Utility classes and standard library extensions from 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/active_support.rb') - rdoc.rdoc_files.include('lib/active_support/**/*.rb') -} - spec = eval(File.read('activesupport.gemspec')) Rake::GemPackageTask.new(spec) do |p| |