-
Notifications
You must be signed in to change notification settings - Fork 36
/
mandrill-rails.gemspec
26 lines (22 loc) · 1.13 KB
/
mandrill-rails.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/mandrill-rails/version', __FILE__)
Gem::Specification.new do |spec|
spec.authors = ["Paul Gallagher"]
spec.email = ["[email protected]"]
spec.description = "Rails integration for Mandrill"
spec.summary = "Provides webhook processing and event decoration to make using Mandrill with Rails just that much easier"
spec.homepage = "https://github.com/evendis/mandrill-rails"
spec.license = 'MIT'
spec.files = `git ls-files`.split($\)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.name = "mandrill-rails"
spec.require_paths = ["lib"]
spec.version = Mandrill::Rails::VERSION
spec.add_runtime_dependency "activesupport", ">= 4"
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "generator_spec", "~> 0.9"
spec.add_development_dependency "guard-rspec", "~> 4.7"
end