forked from adzap/ar_mailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
58 lines (50 loc) · 2.32 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'rubygems'
require 'rake/gempackagetask'
require 'rake/testtask'
require 'rake/rdoctask'
$:.unshift(File.expand_path(File.dirname(__FILE__) + '/lib'))
require './lib/action_mailer/ar_sendmail'
ar_mailer_gemspec = Gem::Specification.new do |s|
s.name = %q{ar_mailer}
s.version = ActionMailer::ARSendmail::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Eric Hodel", "Adam Meehan", 'David Palm']
s.default_executable = %q{ar_sendmail}
s.description = %q{Even delivering email to the local machine may take too long when you have to send hundreds of messages. ar_mailer allows you to store messages into the database for later delivery by a separate process, ar_sendmail. This fork stores the email in the database for easy inspection and tracking.}
s.email = %q{[email protected]}
s.executables = ["ar_sendmail"]
s.extra_rdoc_files = ["History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc"]
s.files = ["History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc", "Rakefile", "bin/ar_sendmail", "lib/action_mailer/ar_mailer.rb", "lib/action_mailer/ar_sendmail.rb", "lib/smtp_tls.rb", "share/bsd/ar_sendmail", "share/linux/ar_sendmail", "share/linux/ar_sendmail.conf", "test/action_mailer.rb", "test/test_armailer.rb", "test/test_arsendmail.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/adzap/ar_mailer}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{seattlerb}
s.summary = %q{A two-phase delivery agent and outbox archive for ActionMailer}
s.test_files = ["test/test_armailer.rb", "test/test_arsendmail.rb"]
end
Rake::GemPackageTask.new(ar_mailer_gemspec) do |pkg|
pkg.gem_spec = ar_mailer_gemspec
end
namespace :gem do
namespace :spec do
desc "Update ar_mailer.gemspec"
task :generate do
File.open("ar_mailer.gemspec", "w") do |f|
f.puts(ar_mailer_gemspec.to_ruby)
end
end
end
end
desc "Build packages and install"
task :install => :package do
sh %{sudo gem install --local pkg/ar_mailer-#{ActionMailer::ARSendmail::VERSION}}
end
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the ar_mailer gem.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/**/test_*.rb'
t.verbose = true
end