Sha256: 915429587dafcad96e171649dd43c833a83fb7d0888b35842add2996f55f7b68

Contents?: true

Size: 370 Bytes

Versions: 2

Compression:

Stored size: 370 Bytes

Contents

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sprockets_relative_url-1.0.0 Guardfile
sprockets_relative_url-0.0.1 Guardfile