forked from thoughtbot/griddler-sendgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgriddler-sendgrid.gemspec
More file actions
25 lines (21 loc) · 927 Bytes
/
griddler-sendgrid.gemspec
File metadata and controls
25 lines (21 loc) · 927 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'griddler/sendgrid/version'
Gem::Specification.new do |spec|
spec.name = 'griddler-sendgrid'
spec.version = Griddler::Sendgrid::VERSION
spec.authors = ['Caleb Thompson']
spec.email = ['caleb@calebthompson.io']
spec.summary = 'SendGrid adapter for Griddler'
spec.description = 'Adapter to allow the use of SendGrid Parse API with Griddler'
spec.homepage = 'https://github.com/thoughtbot/griddler'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ['lib']
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_dependency 'griddler', '>= 1.5.2'
spec.add_dependency 'mail', '>= 2.7.0'
end