Sha256: 03be7c3e733d056e8ed5f3dd21a656f3011b797964fcf4d3ddb0d8e570e7b188

Contents?: true

Size: 1.81 KB

Versions: 5

Compression:

Stored size: 1.81 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "capistrano_mailer"
    gemspec.summary = "Capistrano Deployment Email Notification"
    gemspec.description = %q{Capistrano Deployment Email Notification.  Keep the whole team informed of each release!}
    gemspec.email = ["peter.boling@gmail.com", "dave@textgoeshere.org.uk"]
    gemspec.homepage = "http://github.com/pboling/capistrano_mailer"
    gemspec.authors = ["Peter Boling", "Dave Nolan"]
    gemspec.add_dependency 'actionmailer'
    gemspec.files = ["README.rdoc",
             "capistrano_mailer.gemspec",
             "init.rb",
             "about.yml",
             "lib/cap_mailer.rb",
             "lib/capistrano/mailer.rb",
             "Rakefile",
             "views/cap_mailer/_section.html.erb",
             "views/cap_mailer/_section.text.erb",
             "views/cap_mailer/_section_custom.html.erb",
             "views/cap_mailer/_section_custom.html.erb",
             "views/cap_mailer/notification_email.text.html.erb",
             "views/cap_mailer/notification_email.text.plain.erb",
             "VERSION.yml"]
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install jeweler"
end

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the capistrano_mailer gem.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the capistrano_mailer gem.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'capistrano_mailer'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.markdown')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
capistrano_mailer-3.2.5 Rakefile
capistrano_mailer-3.2.4 Rakefile
capistrano_mailer-3.2.3 Rakefile
capistrano_mailer-3.2.2 Rakefile
capistrano_mailer-3.2.1 Rakefile