From a8f711d3033e04bb961155a6c2c4f8a75e3d7b00 Mon Sep 17 00:00:00 2001 From: mynyml Date: Sat, 12 Sep 2009 17:06:10 -0400 Subject: [PATCH] v0.5 --- Rakefile | 2 +- TODO.txt | 3 --- lib/watchr/version.rb | 2 +- watchr.gemspec | 32 ++++++++++++++++++++++++++------ 4 files changed, 28 insertions(+), 11 deletions(-) diff --git a/Rakefile b/Rakefile index 4642f53..2042e60 100644 --- a/Rakefile +++ b/Rakefile @@ -37,7 +37,7 @@ spec = Gem::Specification.new do |s| s.require_path = "lib" s.bindir = "bin" s.executables = "watchr" - s.files = all_except %w( ^doc ^pkg ^test/fixtures ) + s.files = all_except %w( ^doc/ ^doc$ ^pkg ^bk ^\.wiki ^\.yardoc ) #s.add_dependency 'every', '>= 1.0' s.add_dependency 'rev', '>= 0.3.0' end diff --git a/TODO.txt b/TODO.txt index b678e2f..0d14916 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,7 +1,4 @@ -* bump version -* generate gemspec - * rev dependency should be conditional on OS * fix issue with Script#parse! diff --git a/lib/watchr/version.rb b/lib/watchr/version.rb index 28d6f59..90bba45 100644 --- a/lib/watchr/version.rb +++ b/lib/watchr/version.rb @@ -1,7 +1,7 @@ module Watchr module VERSION #:nodoc: MAJOR = 0 - MINOR = 3 + MINOR = 5 TINY = 0 end diff --git a/watchr.gemspec b/watchr.gemspec index 1379693..97743c8 100644 --- a/watchr.gemspec +++ b/watchr.gemspec @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: watchr version: !ruby/object:Gem::Version - version: 0.3.0 + version: 0.5.0 platform: ruby authors: - Martin Aumont @@ -9,10 +9,19 @@ autorequire: bindir: bin cert_chain: [] -date: 2009-08-26 00:00:00 -04:00 +date: 2009-09-12 00:00:00 -04:00 default_executable: -dependencies: [] - +dependencies: +- !ruby/object:Gem::Dependency + name: rev + type: :runtime + version_requirement: + version_requirements: !ruby/object:Gem::Requirement + requirements: + - - ">=" + - !ruby/object:Gem::Version + version: 0.3.0 + version: description: Continious anything; project files observer/trigger. email: mynyml@gmail.com executables: @@ -24,19 +33,30 @@ extra_rdoc_files: [] files: - Rakefile - test +- test/event_handlers +- test/event_handlers/test_portable.rb +- test/event_handlers/test_base.rb +- test/event_handlers/test_unix.rb +- test/test_controller.rb - test/test_watchr.rb - test/test_helper.rb +- test/test_script.rb - TODO.txt - bin - bin/watchr - lib - lib/watchr - lib/watchr/version.rb +- lib/watchr/event_handlers +- lib/watchr/event_handlers/portable.rb +- lib/watchr/event_handlers/base.rb +- lib/watchr/event_handlers/unix.rb +- lib/watchr/script.rb +- lib/watchr/controller.rb - lib/watchr.rb - README.rdoc - LICENSE -- yard.watchr -- rdoc.watchr +- docs.watchr - specs.watchr - watchr.gemspec has_rdoc: true