forked from thoughtbot/high_voltage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhigh_voltage.gemspec
22 lines (19 loc) · 1003 Bytes
/
high_voltage.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require "high_voltage/version"
Gem::Specification.new do |s|
s.name = 'high_voltage'
s.version = HighVoltage::VERSION.dup
s.authors = ['Matt Jankowski', 'Dan Croak', 'Nick Quaranto', 'Chad Pytel', 'Joe Ferris', 'J. Edward Dewyea', 'Tammer Saleh', 'Mike Burns', 'Tristan Dunn']
s.email = ['[email protected]']
s.homepage = 'http://github.com/thoughtbot/high_voltage'
s.summary = 'Simple static page rendering controller'
s.description = 'Fire in the disco. Fire in the ... taco bell.'
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")
s.add_development_dependency("rspec-rails")
s.add_development_dependency("capybara", ">= 0.4.0")
s.add_development_dependency("sqlite3")
end