Updated Changelog and Readme

This commit is contained in:
Rémy Coutable 2010-11-26 00:56:18 +01:00
parent 47d1e11743
commit cda514cf2a
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,11 @@
== Nov 26, 2010 [by rymai]
Features:
- It's now possible to return an enumerable in the 'watch' optional blocks in the Guardfile.
Specs:
- Guard::Watcher
== 0.2.2 (Oct 25, 2010) == 0.2.2 (Oct 25, 2010)
Bugs fixes: Bugs fixes:

View File

@ -176,10 +176,11 @@ Looks at available guards code for more concrete example.
Guardfile DSL consists of just two simple methods: guard & watch. Example: Guardfile DSL consists of just two simple methods: guard & watch. Example:
guard 'rspec', :version => 2 do guard 'rspec', :version => 2 do
watch('^spec/(.*)_spec.rb') watch('^spec/(.*)_spec\.rb')
watch('^lib/(.*)\.rb') { |m| "spec/lib/#{m[1]}_spec.rb" } watch('^lib/(.*)\.rb') { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('^spec/spec_helper.rb') { "spec" } watch('^spec/spec_helper\.rb') { "spec" }
watch('^spec/spec_helper.rb') { `say hello` } watch('^spec/models/.*\.rb') { ["spec/models", "spec/acceptance"] }
watch('^spec/spec_helper\.rb') { `say hello` }
end end
- "guard" method allow to add a guard with an optional options hash - "guard" method allow to add a guard with an optional options hash