Sha256: 69a598e37f41783ed589716647abcb8d9bcdf52115927ddb744f88fd31be0039

Contents?: true

Size: 919 Bytes

Versions: 7

Compression:

Stored size: 919 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "send_grid/version"

Gem::Specification.new do |s|
  s.name        = "sendgrid-rails"
  s.version     = SendGrid::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["PavelTyk"]
  s.email       = ["paveltyk@gmail.com"]
  s.homepage    = "https://github.com/PavelTyk/sendgrid-rails"
  s.summary     = %q{SendGrid gem fo Rails 3}
  s.description = %q{Gem to extend ActionMailer with SendGrid API support}

  s.rubyforge_project = "sendgrid-rails"

  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

7 entries across 7 versions & 1 rubygems

Version Path
sendgrid-rails-2.0.3 send_grid.gemspec
sendgrid-rails-2.0.2 send_grid.gemspec
sendgrid-rails-2.0.1 send_grid.gemspec
sendgrid-rails-2.0 send_grid.gemspec
sendgrid-rails-1.1.1 send_grid.gemspec
sendgrid-rails-1.1.0 send_grid.gemspec
sendgrid-rails-1.0.0 send_grid.gemspec