diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-22 10:38:25 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-22 10:38:25 -0700 |
commit | a02d672cd7aead8a24e3b10a6b8e12dd91ee0a49 (patch) | |
tree | 0abda7b991c492218bfaffc9413fc1681833b5ac /actionmailer | |
parent | f4ccc179530d5b9436da87d3c221dfa8fa89119a (diff) | |
download | rails-a02d672cd7aead8a24e3b10a6b8e12dd91ee0a49.tar.gz rails-a02d672cd7aead8a24e3b10a6b8e12dd91ee0a49.tar.bz2 rails-a02d672cd7aead8a24e3b10a6b8e12dd91ee0a49.zip |
Horo rdoc template
Diffstat (limited to 'actionmailer')
-rwxr-xr-x | actionmailer/Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index b003f4d559..612bd27774 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -35,7 +35,7 @@ Rake::RDocTask.new { |rdoc| rdoc.title = "Action Mailer -- Easy email delivery and testing" rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' rdoc.options << '--charset' << 'utf-8' - rdoc.template = "#{ENV['template']}.rb" if ENV['template'] + rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : '../doc/template/horo' rdoc.rdoc_files.include('README', 'CHANGELOG') rdoc.rdoc_files.include('lib/action_mailer.rb') rdoc.rdoc_files.include('lib/action_mailer/*.rb') @@ -77,6 +77,7 @@ end desc "Publish the API documentation" task :pgem => [:package] do Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh wrath.rubyonrails.org './gemupdate.sh'` end desc "Publish the API documentation" |