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 /actionmailer/Rakefile | |
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 'actionmailer/Rakefile')
-rw-r--r-- | actionmailer/Rakefile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 4611d95c22..cba6e93c8a 100644 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -1,8 +1,5 @@ -gem 'rdoc', '>= 2.5.10' -require 'rdoc' require 'rake' require 'rake/testtask' -require 'rdoc/task' require 'rake/packagetask' require 'rake/gempackagetask' @@ -25,19 +22,6 @@ namespace :test do end end -# Generate the RDoc documentation -RDoc::Task.new { |rdoc| - rdoc.rdoc_dir = 'doc' - rdoc.title = "Action Mailer -- Easy email delivery and testing" - rdoc.options << '--charset' << 'utf-8' - rdoc.options << '-f' << 'horo' - rdoc.options << '--main' << 'README.rdoc' - rdoc.rdoc_files.include('README.rdoc', 'CHANGELOG') - rdoc.rdoc_files.include('lib/action_mailer.rb') - rdoc.rdoc_files.include('lib/action_mailer/*.rb') - rdoc.rdoc_files.include('lib/action_mailer/delivery_method/*.rb') -} - spec = eval(File.read('actionmailer.gemspec')) Rake::GemPackageTask.new(spec) do |p| |