-
Notifications
You must be signed in to change notification settings - Fork 5
/
sendgrid_postback.gemspec
26 lines (21 loc) · 1.01 KB
/
sendgrid_postback.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/sendgrid_postback/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Doug Puchalski"]
gem.email = ["[email protected]"]
gem.description = %q{SendgridPostback is a Rails Engine which integrates with the SendGrid Event API.}
gem.summary = %q{SendgridPostback is a Rails Engine which integrates with the SendGrid Event API.}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "sendgrid_postback"
gem.require_paths = ["lib"]
gem.version = SendgridPostback::VERSION
# specify any dependencies here; for example:
#s.add_development_dependency "rspec"
gem.add_runtime_dependency "actionmailer"
gem.add_runtime_dependency "actionpack"
gem.add_runtime_dependency "uuidtools"
gem.add_runtime_dependency "yajl-ruby"
end