forked from thoughtbot/griddler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
griddler.gemspec
25 lines (21 loc) · 945 Bytes
/
griddler.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'griddler/version'
Gem::Specification.new do |s|
s.name = 'griddler'
s.version = Griddler::VERSION
s.authors = ['Caleb Thompson', 'Joel Oliveira', 'thoughtbot', 'Swift']
s.homepage = 'http://thoughtbot.com'
s.summary = 'SendGrid Parse API client Rails Engine'
s.license = 'MIT'
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
s.files = Dir['{app,config,lib}/**/*'] + ['LICENSE', 'Rakefile', 'README.md']
s.require_paths = %w{app lib}
s.add_dependency 'rails', '>= 3.2.0'
s.add_dependency 'htmlentities'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'pry'
# jquery-rails is used by the dummy Rails application
s.add_development_dependency 'jquery-rails'
end