forked from thoughtbot/griddler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
griddler.gemspec
30 lines (25 loc) · 1.07 KB
/
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
26
27
28
29
30
$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 Hearth', 'Joel Oliveira', 'thoughtbot', 'Swift']
s.homepage = 'https://github.com/calebhearth/griddler'
s.summary = 'Simplify receiving email in Rails'
s.license = 'MIT'
s.metadata = {
'funding-uri' => 'https://github.com/sponsors/calebhearth'
}
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_dependency 'nokogiri'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sqlite3', '~> 1.4'
s.add_development_dependency 'pry'
# jquery-rails is used by the dummy Rails application
s.add_development_dependency 'jquery-rails'
end