1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
begin
require 'bones'
rescue LoadError
abort '### please install the "bones" gem ###'
end
task :default => 'spec:run'
#task 'gem:release' => 'spec:run'
Bones {
name 'directory_watcher'
summary 'A class for watching files within a directory and generating events when those files change'
authors ['Tim Pease', 'Jeremy Hinegardner']
email 'tim.pease@gmail.com'
url 'http://rubygems.org/gems/directory_watcher'
spec.opts << "--color" << "--format documentation"
# these are optional dependencies for runtime, adding one of them will provide
# additional Scanner backends.
depend_on 'rev' , :development => true
depend_on 'eventmachine', :development => true
depend_on 'cool.io' , :development => true
depend_on 'bones-git' , '~> 1.2.4', :development => true
depend_on 'bones-rspec', '~> 2.0.1', :development => true
depend_on 'rspec' , '~> 2.7.0', :development => true
depend_on 'logging' , '~> 1.6.1', :development => true
}
|