Updated Changelog and Readme
This commit is contained in:
parent
47d1e11743
commit
cda514cf2a
@ -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:
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user