-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcoppertone.gemspec
23 lines (21 loc) · 1.01 KB
/
coppertone.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'coppertone/version'
Gem::Specification.new do |spec|
spec.name = 'coppertone'
spec.version = Coppertone::VERSION
spec.authors = ['Peter M. Goldstein']
spec.email = ['[email protected]']
spec.summary = 'A Sender Policy Framework (SPF) toolkit'
spec.description = 'Coppertone includes tools for parsing SPF DNS records, evaluating the result of SPF checks for received emails, and creating appropriate email headers from SPF results.'
spec.homepage = 'https://github.com/ValiMail/coppertone'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7'
spec.add_dependency 'activesupport', '>= 3.0'
spec.add_dependency 'addressable'
spec.add_dependency 'dns_adapter'
spec.add_dependency 'i18n'
end