-
Notifications
You must be signed in to change notification settings - Fork 12
/
sendgrid4r.gemspec
25 lines (22 loc) · 981 Bytes
/
sendgrid4r.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
# coding: utf-8
src = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(src) unless $LOAD_PATH.include?(src)
require 'sendgrid4r/version'
Gem::Specification.new do |spec|
spec.name = 'sendgrid4r'
spec.version = SendGrid4r::VERSION
spec.authors = ['awwa500@gmail.com']
spec.email = ['awwa500@gmail.com']
spec.summary = 'SendGrid Web API v3 module'
spec.description = 'SendGrid Web API v3 module'
spec.homepage = ''
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency('rest-client', '>=1.8.0', '<3.0')
spec.add_development_dependency('rubocop', '>=0.29.0', '<0.34.3')
spec.add_development_dependency('bundler', '>=1.6.0', '<2.0')
spec.add_development_dependency('rspec', '>=3.3.0', '<3.6')
spec.add_development_dependency('dotenv', '>=0.11.0', '<=2.1.1')
end