-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsendgrid_smtpapi.gemspec
More file actions
24 lines (21 loc) · 993 Bytes
/
sendgrid_smtpapi.gemspec
File metadata and controls
24 lines (21 loc) · 993 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "send_grid/version"
Gem::Specification.new do |s|
s.name = "sendgrid_smtpapi"
s.version = SendGridSmtpApi::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["kylejginavan", "chebyte"]
s.email = ["kylejginavan@gmail.com", "maurotorres@gmail.com"]
s.homepage = "https://github.com/kylejginavan/sendgrid_smtpapi"
s.summary = %q{SendGrid SMTP API gem fo Rails 3}
s.description = %q{Gem to extend ActionMailer with SendGrid SMTP API support}
s.rubyforge_project = "sendgrid_smtpapi"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rspec", "~> 2.5.0"
s.add_dependency "actionmailer", ">= 3.0.0"
s.add_dependency "activesupport", ">= 2.1.0"
end