Sha256: 0a30c69c65d667a1bbec58a9af718d91e35b9c3ca1103dfeb3a082c851351a4e

Contents?: true

Size: 560 Bytes

Versions: 9

Compression:

Stored size: 560 Bytes

Contents

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

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

guard 'cucumber', :all_on_start => 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 & 2 rubygems

Version Path
ts-sidekiq-delta-0.4.0 Guardfile
ts-sidekiq-delta-0.3.0 Guardfile
ts-sidekiq-delta-0.2.0 Guardfile
ts-sidekiq-delta-0.1.0 Guardfile
ts-resque-delta-1.2.4 Guardfile
ts-resque-delta-1.2.3 Guardfile
ts-resque-delta-1.2.2 Guardfile
ts-resque-delta-1.2.1 Guardfile
ts-resque-delta-1.2.0 Guardfile