Sha256: 8f6236d7ec85b504c8f4d5524d5dd694359534b6acbb59c6213fa3a3c26a7be8

Contents?: true

Size: 405 Bytes

Versions: 3

Compression:

Stored size: 405 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(%r{^spec/(dummy|support)/.+\.rb}) { 'spec' }
  watch('spec/spec_helper.rb') { 'spec' }
end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rapid-rack-0.2.0 Guardfile
rapid-rack-0.1.0 Guardfile
rapid-rack-0.0.1 Guardfile