forked from thoughtbot/flutie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flutie.gemspec
24 lines (20 loc) · 1.19 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'flutie/version'
Gem::Specification.new do |s|
s.name = 'flutie'
s.version = Flutie::VERSION.dup
s.licenses = ['MIT']
s.authors = ['Matt Jankowski', 'Chad Pytel', 'Kevin Burg', 'Chad Mazzola', 'Phil LaPier', 'Dan Croak', 'Mike Burns', 'Fred Yates', 'OZAWA Sakuro', 'Gabe Berke-Williams', 'Caleb Thompson', 'Greg Sterndale', 'Matthew Burket', 'Joe Ferris', 'Edwin Morris', 'Tom Crinson', 'Emilien Taque', 'Galen Frechette', 'J. Edward Dewyea', 'Nick Quaranto', 'Aaron Suggs']
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`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_development_dependency('appraisal', '~> 1.0')
s.add_development_dependency('sqlite3', '~> 1.3')
s.add_development_dependency('rspec-rails', '~> 3.1')
end