master/guard.gemspec

29 lines
1.1 KiB
Ruby
Raw Normal View History

2010-10-03 21:00:33 +00:00
# -*- encoding: utf-8 -*-
Kernel.load File.expand_path('../lib/guard/version.rb', __FILE__)
2010-10-03 21:00:33 +00:00
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 = 'https://github.com/guard/guard'
s.summary = 'Guard keeps an eye on your file modifications'
s.description = 'Guard is a command line tool to easily handle events on file system 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
s.add_dependency 'thor', '~> 0.14.6'
s.add_development_dependency 'bundler'
2011-05-13 19:47:02 +00:00
s.add_development_dependency 'rspec', '~> 2.6.0'
s.add_development_dependency 'guard-rspec', '~> 0.3.1'
s.add_development_dependency 'yard', '~> 0.7.2'
s.add_development_dependency 'kramdown', '~> 0.13.3'
2011-01-19 22:06:02 +00:00
2011-06-19 20:04:20 +00:00
s.files = Dir.glob('{bin,images,lib}/**/*') + %w[CHANGELOG.md LICENSE man/guard.1 man/guard.1.html README.md]
2010-10-03 21:00:33 +00:00
s.executable = 'guard'
s.require_path = 'lib'
end