Sha256: 0a0937f23bcdf9d31f3deea6be6278bd208842f0e05607d8149cee5435fc7a3e

Contents?: true

Size: 314 Bytes

Versions: 4

Compression:

Stored size: 314 Bytes

Contents

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

  guard :rubocop, cmd: 'bundle exec rubocop' do
    watch(%r{^lib/(.+)\.rb$})
    watch(%r{^spec/(.+)\.rb$})
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wetransfer-0.9.0.beta3 Guardfile
wetransfer-0.9.0.beta2 Guardfile
wetransfer-0.9.0.beta1 Guardfile
wetransfer-0.9.0.beta Guardfile