guard-rails/guard-rails.gemspec

24 lines
794 B
Ruby
Raw Normal View History

2011-05-27 18:41:07 +00:00
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "guard/rails/version"
Gem::Specification.new do |s|
s.name = "guard-rails"
2011-05-27 18:44:38 +00:00
s.version = GuardRails::VERSION
2011-05-27 18:41:07 +00:00
s.platform = Gem::Platform::RUBY
2011-05-27 18:44:38 +00:00
s.authors = ["John Bintz"]
s.email = ["john@coswellproductions.com"]
2011-05-27 18:41:07 +00:00
s.homepage = ""
2011-05-27 18:44:38 +00:00
s.summary = %q{Restart Rails when things change in your app}
s.description = %q{Restart Rails when things change in your app}
2011-05-27 18:41:07 +00:00
s.rubyforge_project = "guard-rails"
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-05-27 18:42:06 +00:00
s.add_dependency 'guard', '>= 0.2.2'
2011-05-27 18:41:07 +00:00
end