forked from galtzo-floss/capistrano_mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapistrano_mailer.gemspec
More file actions
31 lines (24 loc) · 1.14 KB
/
capistrano_mailer.gemspec
File metadata and controls
31 lines (24 loc) · 1.14 KB
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/capistrano_mailer/version', __FILE__)
Gem::Specification.new do |s|
s.name = "capistrano_mailer"
s.version = CapistranoMailer::VERSION
s.authors = ["Peter Boling", "Dave Nolan", "Jason Rust"]
s.description = "Capistrano Deployment Email Notification. Keep the whole team informed of each release!"
s.files = Dir.glob("{assets,bin,lib,test,spec,features,views}/**/*") + %w(LICENSE README.md CHANGELOG.md Rakefile)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.extra_rdoc_files = [
"CHANGELOG.md",
"LICENSE",
"README.md"
]
s.homepage = "http://github.com/pboling/capistrano_mailer"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Capistrano Deployment Email Notification"
s.add_runtime_dependency(%q<capistrano-log_with_awesome>, [">= 0"])
s.add_runtime_dependency(%q<inline-style>, [">= 0"])
s.add_runtime_dependency(%q<actionmailer>, [">= 0","< 4"])
end