Sha256: fa2845be31fc00f076e2b0834fde0952c448fcc206efdc017dfdd16162a59ffb
Contents?: true
Size: 696 Bytes
Versions: 5
Compression:
Stored size: 696 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :cli => '--color --format doc' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { "spec" } watch('spec/spec_helper.rb') { "spec" } end guard 'cucumber', :notification => true, :all_after_pass => false, :cli => '--profile focus' do watch(%r{^features/.+\.feature$}) watch(%r{^features/support/.+$}) { 'features' } watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' } watch(%r{^lib/.+\.rb$}) { "features" } watch(%r{^cucumber.yml$}) { "features" } end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
soap-object-0.6.5 | Guardfile |
soap-object-0.6.3 | Guardfile |
soap-object-0.6.2 | Guardfile |
soap-object-0.6.1 | Guardfile |
soap-object-0.6 | Guardfile |