Sha256: 73378c6d7b904c47b1af1b4a3cef4f5945a65cfe29c68c771046e3ff6cd564fb

Contents?: true

Size: 388 Bytes

Versions: 20

Compression:

Stored size: 388 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

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

guard :rspec, cmd: 'bundle exec rspec' 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

20 entries across 20 versions & 1 rubygems

Version Path
adparlor-facebook-0.8.2 Guardfile
adparlor-facebook-0.8.0 Guardfile
adparlor-facebook-0.7.9 Guardfile
adparlor-facebook-0.7.8 Guardfile
adparlor-facebook-0.7.7 Guardfile
adparlor-facebook-0.7.6 Guardfile
adparlor-facebook-0.7.5 Guardfile
adparlor-facebook-0.7.4 Guardfile
adparlor-facebook-0.7.3 Guardfile
adparlor-facebook-0.7.2 Guardfile
adparlor-facebook-0.7.1 Guardfile
adparlor-facebook-0.7.0 Guardfile
adparlor-facebook-0.6.6 Guardfile
adparlor-facebook-0.6.5 Guardfile
adparlor-facebook-0.6.4 Guardfile
adparlor-facebook-0.6.3 Guardfile
adparlor-facebook-0.6.2 Guardfile
adparlor-facebook-0.6.1 Guardfile
adparlor-facebook-0.6.0 Guardfile
adparlor-facebook-0.5.9 Guardfile