-
Notifications
You must be signed in to change notification settings - Fork 6
/
send_grid_mailer.gemspec
37 lines (32 loc) · 1.49 KB
/
send_grid_mailer.gemspec
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
27
28
29
30
31
32
33
34
35
36
37
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem"s version:
require "send_grid_mailer/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "send_grid_mailer"
s.version = SendGridMailer::VERSION
s.authors = ["Platanus", "Leandro Segovia"]
s.email = ["rubygems@platan.us", "ldlsegovia@gmail.com"]
s.homepage = "https://github.com/platanus/send_grid_mailer"
s.summary = "Action Mailer adapter for using SendGrid"
s.description = "Is an Action Mailer adapter for using SendGrid in a Rails application"
s.license = "MIT"
s.files = `git ls-files`.split($/).reject { |fn| fn.start_with? "spec" }
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.test_files = Dir["spec/**/*"]
s.add_dependency "ruby-handlebars", "~> 0.4.1"
s.add_dependency "letter_opener", "~> 1.7.0"
s.add_dependency "rails", ">= 4.2.0"
s.add_dependency "sendgrid-ruby", "~> 5", ">= 5.3.0"
s.add_development_dependency "coveralls"
s.add_development_dependency "factory_bot_rails"
s.add_development_dependency "guard-rspec", "~> 4.7"
s.add_development_dependency "pry"
s.add_development_dependency "pry-rails"
s.add_development_dependency "rspec-rails", "~> 3.5.0"
s.add_development_dependency "rspec_junit_formatter"
s.add_development_dependency "rubocop", "0.65.0"
s.add_development_dependency "rubocop-rspec"
s.add_development_dependency "sqlite3", "~> 1.4"
end