forked from eddiezane/smtpapi-ruby
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsmtpapi.gemspec
More file actions
23 lines (20 loc) · 940 Bytes
/
smtpapi.gemspec
File metadata and controls
23 lines (20 loc) · 940 Bytes
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 'smtpapi/version'
Gem::Specification.new do |spec|
spec.name = 'smtpapi'
spec.version = Smtpapi::VERSION
spec.authors = ['Wataru Sato', 'SendGrid']
spec.email = ['awwa500@gmail.com', 'community@sendgrid.com']
spec.summary = 'Smtpapi library for SendGrid.'
spec.description = 'Smtpapi library for SendGrid.'
spec.homepage = 'https://github.com/sendgrid/smtpapi-ruby'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test|spec|features)/)
spec.require_paths = ['lib']
spec.add_development_dependency 'rake'
spec.add_development_dependency('test-unit', '~> 3.0')
spec.add_development_dependency('simplecov', '~> 0.18.5')
end