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 26
desc "Default Task"
task :default => [ :test ]

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

J
Jeremy Kemper 已提交
30 31 32 33 34 35
task :isolated_test 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
D
Initial  
David Heinemeier Hansson 已提交
36

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

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

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

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

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

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

74 75 76 77 78
  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 已提交
79
end