Using %|...| regex in Guardfile example
This commit is contained in:
parent
7f39a55fdf
commit
bb56c41a49
10
README.rdoc
10
README.rdoc
@ -176,11 +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/models/.*\.rb') { ["spec/models", "spec/acceptance"] }
|
watch(%|^spec/models/.*\.rb|) { ["spec/models", "spec/acceptance"] }
|
||||||
watch('^spec/spec_helper\.rb') { `say hello` }
|
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