-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
flutie.gemspec
45 lines (41 loc) · 1.1 KB
/
flutie.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
38
39
40
41
42
43
44
45
$LOAD_PATH << File.expand_path('lib', __dir__)
require 'flutie/version'
Gem::Specification.new do |s|
s.name = 'flutie'
s.version = Flutie::VERSION.dup
s.licenses = ['MIT']
s.authors = <<-AUTHORS.split("\n")
Aaron Suggs
Caleb Thompson
Chad Mazzola
Chad Pytel
Dan Croak
Edwin Morris
Emilien Taque
Fred Yates
Gabe Berke-Williams
Galen Frechette
Greg Sterndale
J. Edward Dewyea
Joe Ferris
Kevin Burg
Matt Jankowski
Matthew Burket
Mike Burns
Nick Quaranto
OZAWA Sakuro
Phil LaPier
Tom Crinson
AUTHORS
s.email = ['[email protected]']
s.homepage = 'http://github.com/thoughtbot/flutie'
s.summary = 'Flutie provides extra Rails view helpers'
s.description = 'Flutie is a starting point for personal discovery'
s.files = `git ls-files -z`
.split("\x0")
.reject { |f| f =~ %r{^(spec|gemfiles|bin)/} }
s.require_paths = ['lib']
s.add_development_dependency('appraisal', '~> 2.2')
s.add_development_dependency('rspec-rails', '~> 3.7')
s.add_development_dependency('sqlite3', '~> 1.3')
end