guard-hydra/guard-hydra.gemspec
2011-08-24 11:36:38 -04:00

23 lines
725 B
Ruby

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "guard-hydra"
s.version = '0.0.1'
s.authors = ["John Bintz"]
s.email = ["john@coswellproductions.com"]
s.homepage = ""
s.summary = %q{Use Hydra to run all specs. Super-fast!}
s.description = %q{Use Hydra to run all specs. Super-fast!}
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"]
s.add_dependency 'guard'
s.add_dependency 'hydra'
end