Rakefile 2.4 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1 2 3 4 5 6
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/packagetask'
require 'rake/gempackagetask'
7
require File.join(File.dirname(__FILE__), 'lib', 'action_mailer', 'version')
D
Initial  
David Heinemeier Hansson 已提交
8 9 10

PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME      = 'actionmailer'
11
PKG_VERSION   = ActionMailer::VERSION::STRING + PKG_BUILD
D
Initial  
David Heinemeier Hansson 已提交
12 13
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"

14 15 16 17 18
RELEASE_NAME  = "REL #{PKG_VERSION}"

RUBY_FORGE_PROJECT = "actionmailer"
RUBY_FORGE_USER    = "webster132"

D
Initial  
David Heinemeier Hansson 已提交
19 20 21 22 23 24 25
desc "Default Task"
task :default => [ :test ]

# Run the unit tests
Rake::TestTask.new { |t|
  t.libs << "test"
  t.pattern = 'test/*_test.rb'
J
Joshua Peek 已提交
26
  t.warning = true
D
Initial  
David Heinemeier Hansson 已提交
27 28
}

29 30 31 32 33 34 35
namespace :test do
  task :isolated do
    ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
    Dir.glob("test/*_test.rb").all? do |file|
      system(ruby, '-Ilib:test', file)
    end or raise "Failures"
  end
J
Jeremy Kemper 已提交
36
end
D
Initial  
David Heinemeier Hansson 已提交
37

38
# Generate the RDoc documentation
D
Initial  
David Heinemeier Hansson 已提交
39 40 41
Rake::RDocTask.new { |rdoc|
  rdoc.rdoc_dir = 'doc'
  rdoc.title    = "Action Mailer -- Easy email delivery and testing"
D
David Heinemeier Hansson 已提交
42
  rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
43
  rdoc.options << '--charset' << 'utf-8'
J
Jeremy Kemper 已提交
44
  rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : '../doc/template/horo'
D
Initial  
David Heinemeier Hansson 已提交
45 46 47
  rdoc.rdoc_files.include('README', 'CHANGELOG')
  rdoc.rdoc_files.include('lib/action_mailer.rb')
  rdoc.rdoc_files.include('lib/action_mailer/*.rb')
48
  rdoc.rdoc_files.include('lib/action_mailer/delivery_method/*.rb')
D
Initial  
David Heinemeier Hansson 已提交
49 50
}

51
spec = eval(File.read('actionmailer.gemspec'))
D
Initial  
David Heinemeier Hansson 已提交
52 53 54 55 56 57

Rake::GemPackageTask.new(spec) do |p|
  p.gem_spec = spec
end

desc "Publish the API documentation"
58
task :pgem => [:package] do
59
  require 'rake/contrib/sshpublisher'
D
David Heinemeier Hansson 已提交
60
  Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
61
  `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'`
D
Initial  
David Heinemeier Hansson 已提交
62 63 64
end

desc "Publish the API documentation"
65
task :pdoc => [:rdoc] do
66
  require 'rake/contrib/sshpublisher'
67
  Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/am", "doc").upload
D
Initial  
David Heinemeier Hansson 已提交
68 69
end

70
desc "Publish the release files to RubyForge."
71
task :release => [ :package ] do
72
  require 'rubyforge'
73
  require 'rake/contrib/rubyforgepublisher'
74

75 76 77 78 79
  packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }

  rubyforge = RubyForge.new
  rubyforge.login
  rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
J
Jeremy Kemper 已提交
80
end