Sha256: 4bd62a02b365666e6c8c7d2b46215fb47b9f4bcdc8b2499431a679e7eba1bcb7

Contents?: true

Size: 668 Bytes

Versions: 14

Compression:

Stored size: 668 Bytes

Contents

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

guard :cucumber do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})                      { 'features' }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreplay-0.17.1 Guardfile
foreplay-0.17.0 Guardfile
foreplay-0.16.0 Guardfile
foreplay-0.15.4 Guardfile
foreplay-0.15.2 Guardfile
foreplay-0.15.1 Guardfile
foreplay-0.15.0 Guardfile
foreplay-0.13.5 Guardfile
foreplay-0.13.4 Guardfile
foreplay-0.13.3 Guardfile
foreplay-0.13.2 Guardfile
foreplay-0.13.1 Guardfile
foreplay-0.13.0 Guardfile
foreplay-0.11.2 Guardfile