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