-
Notifications
You must be signed in to change notification settings - Fork 43
/
mandrill_dm.gemspec
27 lines (23 loc) · 1005 Bytes
/
mandrill_dm.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
27
Gem::Specification.new do |s|
s.name = 'mandrill_dm'
s.version = '1.3.10'
s.date = '2020-03-20'
s.summary = 'A basic Mandrill delivery method for Rails.'
s.description = 'A basic Mandrill delivery method for Rails.'
s.authors = ['Jonathan Berglund', 'John Dell', 'Kirill Shnurov']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://github.com/spovich/mandrill_dm'
s.license = 'MIT'
s.files = Dir['{lib,spec}/**/*', '[A-Z]*'] - ['Gemfile.lock']
s.require_path = 'lib'
s.required_ruby_version = '>= 2.0'
s.post_install_message = File.read("MIGRATE") if File.exist?("MIGRATE")
s.add_dependency 'mail', '>= 2.6'
s.add_dependency 'mandrill-api-json', '~> 1.0.54'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.7.0'
s.add_development_dependency 'rubocop', '0.50.0'
s.add_development_dependency 'simplecov', '~> 0.15.1'
s.add_development_dependency 'appraisal'
end