Sha256: c63b5001d3bf4945c0d71e6aa1f86e712352c5793d858c00280f89bf31e34d69

Contents?: true

Size: 352 Bytes

Versions: 4

Compression:

Stored size: 352 Bytes

Contents

guard :bundler do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard :rspec, cmd: 'bundle exec rspec' do
  watch(/^spec\/.+_spec\.rb$/)
  watch(/^lib\/(.+)\.rb$/) { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
end

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

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
implicit-schema-0.0.1 Guardfile
accession-1.0.0 Guardfile
accession-0.0.2 Guardfile
accession-0.0.1 Guardfile