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.13 Guardfile
flapjack-0.7.12 Guardfile
flapjack-0.7.11 Guardfile
flapjack-0.7.10 Guardfile
flapjack-0.7.9 Guardfile
flapjack-0.7.8 Guardfile
flapjack-0.7.7 Guardfile
flapjack-0.7.6 Guardfile
flapjack-0.7.5 Guardfile
flapjack-0.7.4 Guardfile
flapjack-0.7.3 Guardfile
flapjack-0.7.2 Guardfile
flapjack-0.7.1 Guardfile
flapjack-0.7.0 Guardfile
flapjack-0.6.61 Guardfile
flapjack-0.6.60 Guardfile
flapjack-0.6.59 Guardfile
flapjack-0.6.58 Guardfile
flapjack-0.6.57 Guardfile
flapjack-0.6.56 Guardfile