Sha256: b7102d7789e62f9974b3b669062ded7479d9ecbaa7239f3595653cfd7f3418fa

Contents?: true

Size: 439 Bytes

Versions: 8

Compression:

Stored size: 439 Bytes

Contents

guard :rubocop do
  watch(/.+\.rb$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

guard(
  :rspec,
  all_after_pass: true,
  all_on_start: true,
  cmd: 'NO_SIMPLECOV=true bundle exec rspec --fail-fast --format documentation'
) do
  watch(%r{spec/.+_spec\.rb$})
  watch(%r{lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
  watch(%r{^spec/support/.+\.rb$}) { 'spec' }
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
resque-rate_limited-1.2.4 Guardfile
resque-rate_limited-1.2.3 Guardfile
resque-rate_limited-1.2.2 Guardfile
resque-rate_limited_queue-1.2.0 Guardfile
resque-rate_limited-1.2.0 Guardfile
resque-rate_limited-1.1.0 Guardfile
resque-rate_limited_queue-1.1.0 Guardfile
resque-rate_limited_queue-1.0.4 Guardfile