2011-08-03 22:49:53 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2011-08-04 17:35:32 +00:00
|
|
|
s.name = "guard-hydra"
|
2011-08-03 22:49:53 +00:00
|
|
|
s.version = '0.0.1'
|
|
|
|
s.authors = ["John Bintz"]
|
|
|
|
s.email = ["john@coswellproductions.com"]
|
|
|
|
s.homepage = ""
|
2011-08-04 17:35:32 +00:00
|
|
|
s.summary = %q{Use Hydra to run all specs. Super-fast!}
|
|
|
|
s.description = %q{Use Hydra to run all specs. Super-fast!}
|
2011-08-03 22:49:53 +00:00
|
|
|
|
|
|
|
s.rubyforge_project = "guard-rspec-hydra"
|
|
|
|
|
|
|
|
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"]
|
|
|
|
|
2011-08-24 15:36:38 +00:00
|
|
|
s.add_dependency 'guard'
|
2011-08-04 17:35:32 +00:00
|
|
|
s.add_dependency 'hydra'
|
2011-08-03 22:49:53 +00:00
|
|
|
end
|