Sha256: 2d61dffe37c096fbd695017899a07b3bd35b8b8aafdd1a61f37b27d6d1d0ac1d

Contents?: true

Size: 876 Bytes

Versions: 45

Compression:

Stored size: 876 Bytes

Contents

guard 'rspec', :cli => '--format Fuubar --format html --out tmp/spec.html --require ./spec/support/uncolored_doc_formatter.rb --format UncoloredDocFormatter --out tmp/spec_doc.txt --require ./spec/support/profile_all_formatter.rb --format ProfileAllFormatter --out tmp/spec_profile.txt', :version => 2 do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

# NB: seems to be buggy with the default --progress formatter, was
# causing failures to parse the features
guard 'cucumber', :cli => '--no-profile --color --format Cucumber::Formatter::Fuubar --strict' 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' }
end

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
flapjack-0.7.35 Guardfile
flapjack-0.7.34 Guardfile
flapjack-0.7.33 Guardfile
flapjack-0.7.32 Guardfile
flapjack-0.7.31 Guardfile
flapjack-0.7.30 Guardfile
flapjack-0.7.29 Guardfile
flapjack-0.7.28 Guardfile
flapjack-0.7.27 Guardfile
flapjack-0.7.26 Guardfile
flapjack-0.7.25 Guardfile
flapjack-0.7.22 Guardfile
flapjack-0.7.21 Guardfile
flapjack-0.7.20 Guardfile
flapjack-0.7.19 Guardfile
flapjack-0.7.18 Guardfile
flapjack-0.7.17 Guardfile
flapjack-0.7.16 Guardfile
flapjack-0.7.15 Guardfile
flapjack-0.7.14 Guardfile