Sha256: 4aedb3ac575874f09406a5e10992c8ffd146b1c130260715a0b286472ff6df79

Contents?: true

Size: 362 Bytes

Versions: 1

Compression:

Stored size: 362 Bytes

Contents

group :red_green_refactor, halt_on_fail: true do
  guard :rspec, cmd: "bundle exec rspec", failed_mode: 'focus' do
    watch(%r{^spec/.+_spec\.rb$})
    watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  end
  guard :rubocop, all_on_start: false do
    watch(/.+\.rb$/)
    watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
warden-oauthed-0.0.1 Guardfile