-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomailer.gemspec
26 lines (21 loc) · 980 Bytes
/
customailer.gemspec
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "customailer/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "customailer"
s.version = Customailer::VERSION
s.authors = ["Roman Kushnir"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/RKushnir/customailer"
s.summary = "Customize email templates."
s.description = "Customailer allows to override and edit mailer templates directly on the site without touching the application view files."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", "~> 3.2.0"
s.add_dependency "liquid", "~> 2.3.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "capybara"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "guard-spork"
end