Sha256: 574799d41bda315a799b16fd35ff1dc9dbba6a747c00a5dfce8d4de47ee23f68
Contents?: true
Size: 993 Bytes
Versions: 4
Compression:
Stored size: 993 Bytes
Contents
# -*- 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
Version data entries
4 entries across 4 versions & 1 rubygems