Sha256: 736bb345ae257fac28cc2c8664a40a096ebffeac3935dd75efecb19f22bdf100

Contents?: true

Size: 476 Bytes

Versions: 14

Compression:

Stored size: 476 Bytes

Contents

guard 'cucumber' do
  watch(%r{^bin/.+$}) { 'features' }
  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' }
end

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
wrapp-1.0.0 Guardfile
wrapp-0.7.0 Guardfile
wrapp-0.6.0 Guardfile
wrapp-0.5.1 Guardfile
wrapp-0.5.0 Guardfile
wrapp-0.4.0 Guardfile
wrapp-0.3.0 Guardfile
wrapp-0.2.3 Guardfile
wrapp-0.2.2 Guardfile
wrapp-0.2.1 Guardfile
wrapp-0.2.0 Guardfile
wrapp-0.1.2 Guardfile
wrapp-0.1.1-x86_64-darwin-12 Guardfile
wrapp-0.1.0 Guardfile