forked from markets/maily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maily.gemspec
26 lines (21 loc) · 901 Bytes
/
maily.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
require "./lib/maily/version"
Gem::Specification.new do |s|
s.name = "maily"
s.version = Maily::VERSION
s.authors = ["markets"]
s.email = ["srmarc.ai@gmail.com"]
s.homepage = "https://github.com/markets/maily"
s.summary = "Rails Engine to preview emails in the browser."
s.description = "Maily is a Rails Engine to manage, test and navigate through all your email templates of your app, being able to preview them directly in your browser."
s.license = "MIT"
s.files = Dir["{app,config,lib}/**/*"] + %w[README.md CHANGELOG.md MIT-LICENSE]
s.require_paths = ["lib"]
s.add_dependency "rails", ">= 4.2"
if RUBY_VERSION >= "2.5.0"
s.add_dependency "sassc-rails"
else
s.add_dependency "sass-rails", ">= 4", "< 6"
end
s.add_development_dependency "rspec-rails"
s.add_development_dependency "appraisal"
end