forked from expectedbehavior/active_mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_mailer.gemspec
More file actions
23 lines (19 loc) · 1.01 KB
/
active_mailer.gemspec
File metadata and controls
23 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
Gem::Specification.new do |s|
s.name = "active_mailer"
s.summary = "Adds model-level validation to emails."
s.description = "Application that have complext email sending logic have DRYness problems. ActiveMailersolves that by making a legitimate email model where all sending logic belongs. Also capable of acting as an audit trail for email sending."
s.authors = ["Matt Gordon"]
s.email = 'support@expectedbehavior.com'
s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.rdoc"]
s.version = "0.0.11"
s.homepage =
'https://github.com/thrivesmart/active_mailer'
s.required_rubygems_version = "> 1.3.6"
s.add_dependency "activesupport" , "~> 4.0"
s.add_dependency "rails" , "~> 4.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end