forked from stephenb/sendgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsendgrid.gemspec
More file actions
27 lines (22 loc) · 1015 Bytes
/
sendgrid.gemspec
File metadata and controls
27 lines (22 loc) · 1015 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
require 'sendgrid/version'
Gem::Specification.new do |s|
s.name = "sendgrid"
s.version = SendGrid::VERSION
s.authors = ["Stephen Blankenship", "Marc Tremblay", "Bob Burbach", "Drew Tempelmeyer"]
s.date = "2013-05-15"
s.description = "This gem allows simple integration between ActionMailer and SendGrid. \n SendGrid is an email deliverability API that is affordable and has lots of bells and whistles."
s.email = "stephenrb@gmail.com"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.required_rubygems_version = ">= 1.3.6"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.require_paths = ["lib"]
s.homepage = "https://github.com/stephenb/sendgrid"
s.summary = "A gem that allows simple integration of ActionMailer with SendGrid (http://sendgrid.com)"
s.add_runtime_dependency 'rails', '>= 3.0'
s.add_development_dependency 'shoulda', '>= 0'
end