Sha256: 66334eaa6d2afc311492e0f9c2bea50a78f140c3fb86c59bdbaa0fffc41fdd6b

Contents?: true

Size: 437 Bytes

Versions: 12

Compression:

Stored size: 437 Bytes

Contents

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

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
url_canonicalize-0.1.5 Guardfile
url_canonicalize-0.1.4 Guardfile
url_canonicalize-0.1.2 Guardfile
url_canonicalize-0.1.1 Guardfile
url_canonicalize-0.1.0 Guardfile
url_canonicalize-0.0.7 Guardfile
url_canonicalize-0.0.6 Guardfile
url_canonicalize-0.0.5 Guardfile
url_canonicalize-0.0.4 Guardfile
url_canonicalize-0.0.3 Guardfile
url_canonicalize-0.0.2 Guardfile
url_canonicalize-0.0.1 Guardfile