-
Notifications
You must be signed in to change notification settings - Fork 2
/
mail-ses.gemspec
27 lines (23 loc) · 996 Bytes
/
mail-ses.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'mail/ses/version'
Gem::Specification.new do |s|
s.name = 'mail-ses'
s.version = Mail::SES::VERSION
s.licenses = ['MIT']
s.summary = 'Ruby Mail delivery method handler for Amazon SES'
s.description = 'Ruby Mail delivery method handler for Amazon SES'
s.authors = ['Johnny Shields']
s.email = '[email protected]'
s.files = Dir.glob('lib/**/*') + %w[CHANGELOG.md LICENSE README.md]
s.homepage = 'https://github.com/tablecheck/mail-ses'
s.required_ruby_version = '>= 2.6.0'
s.add_dependency('aws-sdk-sesv2', '>= 1.27')
s.add_dependency('mail', '>= 2.8.1')
s.add_development_dependency('net-smtp')
s.add_development_dependency('nokogiri')
s.add_development_dependency('rake', '>= 1')
s.add_development_dependency('rspec', '>= 3.8')
s.add_development_dependency('rubocop', '~> 1.30.1')
s.metadata['rubygems_mfa_required'] = 'true'
end