Sha256: 9c8831e343faef551c68222ea25b5d170b7133da16a744ec2771ef6db7776555

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

guard :bundler do
  watch('Gemfile')
  watch('basquiat.gemspec')
end

guard :rspec, { cmd:  'bundle exec rspec', all_on_start: true,
                keep: true, all_after_pass: true, run_all: { cmd: 'rspec -f progress' } } do
  watch(%r{^spec/.+_spec.rb$})
  watch(%r{^spec/lib/.+_spec.rb$})
  watch(%r{^lib/basquiat/(.+)\.rb$}) { |matchdata| "spec/lib/#{matchdata[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
  watch(%r{spec/support/.+\.rb}) { 'spec' }
end

guard :rubocop, { cmd: 'rubocop', cli: '-fs -c./.rubocop.yml' } do
  #watch(%r{.+\.rb$})
  #watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
basquiat-1.2.0 Guardfile