2010-10-03 21:00:33 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
$:.push File.expand_path('../lib', __FILE__)
|
|
|
|
require 'guard/version'
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = 'guard'
|
|
|
|
s.version = Guard::VERSION
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.authors = ['Thibaud Guillaume-Gentil']
|
|
|
|
s.email = ['thibaud@thibaud.me']
|
|
|
|
s.homepage = 'http://rubygems.org/gems/guard'
|
2010-10-08 13:00:45 +00:00
|
|
|
s.summary = 'Guard keep an eye on your files modifications.'
|
2010-10-10 10:38:25 +00:00
|
|
|
s.description = 'Guard is a command line tool to easily handle events on files modifications.'
|
2011-01-19 22:06:02 +00:00
|
|
|
|
2010-10-03 21:11:58 +00:00
|
|
|
s.required_rubygems_version = '>= 1.3.6'
|
2010-10-03 21:00:33 +00:00
|
|
|
s.rubyforge_project = 'guard'
|
2011-01-19 22:06:02 +00:00
|
|
|
|
2011-05-08 20:08:28 +00:00
|
|
|
s.add_development_dependency 'bundler'
|
2011-04-10 19:50:18 +00:00
|
|
|
s.add_development_dependency 'rspec', '~> 2.5.0'
|
2011-05-08 19:56:59 +00:00
|
|
|
s.add_development_dependency 'guard-rspec', '~> 0.3.0'
|
2011-01-19 22:06:02 +00:00
|
|
|
|
2010-11-30 21:46:52 +00:00
|
|
|
s.add_dependency 'thor', '~> 0.14.6'
|
2011-01-19 22:06:02 +00:00
|
|
|
|
2011-04-25 18:44:18 +00:00
|
|
|
s.files = Dir.glob('{bin,images,lib}/**/*') + %w[LICENSE README.markdown]
|
2010-10-03 21:00:33 +00:00
|
|
|
s.executable = 'guard'
|
|
|
|
s.require_path = 'lib'
|
|
|
|
end
|