Sha256: 872bf2fb7d9ca335843a49032932bc916591d965567b3619d1c218d3e55c43d4

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sendgrid_actionmailer/version'

Gem::Specification.new do |spec|
  spec.name          = 'sendgrid-actionmailer'
  spec.version       = SendGridActionMailer::VERSION
  spec.authors       = ['Eddie Zaneski', 'Kristján Pétursson', 'Nick Muerdter']
  spec.email         = ['eddiezane@gmail.com', 'kristjan@gmail.com', 'stuff@nickm.org']
  spec.summary       = %q{SendGrid support for ActionMailer.}
  spec.description   = %q{Use ActionMailer with SendGrid's Web API.}
  spec.homepage      = 'https://github.com/eddiezane/sendgrid-actionmailer'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_dependency 'mail', '~> 2.7'
  spec.add_dependency 'sendgrid-ruby', '~> 6.0'

  spec.add_development_dependency 'appraisal', '~> 2.1.0'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec', '~> 3.2'
  spec.add_development_dependency 'webmock'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sendgrid-actionmailer-3.1.1 sendgrid-actionmailer.gemspec
sendgrid-actionmailer-3.1.0 sendgrid-actionmailer.gemspec
sendgrid-actionmailer-3.0.2 sendgrid-actionmailer.gemspec
sendgrid-actionmailer-3.0.1 sendgrid-actionmailer.gemspec
sendgrid-actionmailer-3.0.0 sendgrid-actionmailer.gemspec