Sha256: 03a215d2726788bf19191f7a594b3bbae32cea2bf91bae2d139cea2478a883a0

Contents?: true

Size: 949 Bytes

Versions: 9

Compression:

Stored size: 949 Bytes

Contents

guard 'spork' do
  watch('Gemfile')
  watch('spec/spec_helper.rb')  { :rspec }
  watch(%r{^features/support/}) { :cucumber }
end

guard 'yard', :stdout => '/dev/null', :stderr => '/dev/null' do
  watch(%r{app/.+\.rb})
  watch(%r{lib/.+\.rb})
  watch(%r{ext/.+\.c})
end

guard 'rspec', :version => 2, :cli => "--color --drb --format Fuubar", :all_on_start => false, :all_after_pass => false, :notification => false do
  watch(%r{^spec/unit/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})          { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')       { "spec" }
end

guard 'cucumber', :cli => "--drb --format pretty --tags ~@wip", :all_on_start => false, :all_after_pass => false, :notification => false 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

9 entries across 9 versions & 1 rubygems

Version Path
berkshelf-0.3.2 Guardfile
berkshelf-0.3.1 Guardfile
berkshelf-0.3.0 Guardfile
berkshelf-0.2.0 Guardfile
berkshelf-0.1.5 Guardfile
berkshelf-0.1.4 Guardfile
berkshelf-0.1.3 Guardfile
berkshelf-0.1.2 Guardfile
berkshelf-0.1.1 Guardfile