Sha256: ce7e90848cedb2281a573d38b94a0bfc76d7b63e20063bb3488c57445c61f456

Contents?: true

Size: 438 Bytes

Versions: 9

Compression:

Stored size: 438 Bytes

Contents

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

guard :rspec, all_after_pass: true, all_on_start: true, cmd: 'bundle exec rspec --fail-fast --format documentation' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
  watch(%r{^spec/support/.+\.rb$}) { 'spec' }
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
contact-data-0.6.0 Guardfile
contact-data-0.5.6 Guardfile
contact-data-0.5.5 Guardfile
contact-data-0.5.4 Guardfile
contact-data-0.5.3 Guardfile
contact-data-0.5.2 Guardfile
contact-data-0.5.1 Guardfile
contact-data-0.5.0 Guardfile
contact-data-0.4.10 Guardfile