-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmail_delivery_task.gemspec
28 lines (22 loc) · 1.06 KB
/
mail_delivery_task.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
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mail_delivery_task/version'
Gem::Specification.new do |spec|
spec.name = 'mail_delivery_task'
spec.version = MailDeliveryTask::VERSION
spec.authors = ['James Chang']
spec.email = ['[email protected]']
spec.summary = 'Async email delivery'
spec.homepage = 'https://github.com/square/mail_delivery_task'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_runtime_dependency 'activejob', '>= 4.2.0', '< 5.2'
spec.add_runtime_dependency 'activerecord', '>= 4.2.0', '< 5.2'
spec.add_runtime_dependency 'activesupport', '>= 4.2.0', '< 5.2'
spec.add_runtime_dependency 'enumerize'
spec.add_runtime_dependency 'with_advisory_lock'
end