Sha256: 7e8db3e47856019f885a97634d431c586366b1f0194b8ac836de08318f02dcc9

Contents?: true

Size: 562 Bytes

Versions: 5

Compression:

Stored size: 562 Bytes

Contents

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
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

guard 'rspec', :version => 2, :cli => "-c -d --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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ryansch-ts-resque-delta-1.1.5.4 Guardfile
ryansch-ts-resque-delta-1.1.5.4.dev Guardfile
ryansch-ts-resque-delta-1.1.5.3 Guardfile
ryansch-ts-resque-delta-1.1.5.2 Guardfile
ryansch-ts-resque-delta-1.1.5.1 Guardfile