Sha256: adde694e5c1e6eb1ff167d42b855cf9c59cf26cd5514a2a3d52a81ffa9797aaa

Contents?: true

Size: 478 Bytes

Versions: 19

Compression:

Stored size: 478 Bytes

Contents

guard 'minitest' do
  watch(%r|^spec/(.*)_spec\.rb|)
  watch(%r|^lib/(.*)([^/]+)\.rb|)     { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  watch(%r|^spec/spec_helper\.rb|)    { "spec" }
end

guard 'cucumber' do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$}) { 'features' }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) do |m|
    Dir[File.join("**/#{m[1]}.feature")][0] || 'features'
  end
end

guard 'cane' do
  watch(%r|.*\.rb|)
  watch('.cane')
end

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
busser-0.8.0 Guardfile
busser-0.7.1 Guardfile
busser-0.7.0 Guardfile
busser-0.7.0.rc.1 Guardfile
busser-0.6.2 Guardfile
busser-0.6.1 Guardfile
busser-0.6.0 Guardfile
busser-0.6.0.beta.1 Guardfile
busser-0.5.0 Guardfile
busser-0.4.1 Guardfile
busser-0.4.0 Guardfile
busser-0.3.2 Guardfile
busser-0.3.1 Guardfile
busser-0.3.0 Guardfile
busser-0.2.0 Guardfile
busser-0.1.1 Guardfile
busser-0.1.0 Guardfile
kb-1.0.0.alpha.1 Guardfile
kb-1.0.0.alpha.0 Guardfile