Sha256: 8c2791a7cc9e42b8ee544e3ae243112e99c9d07a647cc81176af7f83013eb2e1

Contents?: true

Size: 392 Bytes

Versions: 7

Compression:

Stored size: 392 Bytes

Contents

# frozen_string_literal: true

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard :test, test_paths: ['test/unit', 'test/integration'] do
  watch('lib/twdeps.rb') { 'test' }
  watch(%r{^lib/twdeps/(.+)\.rb$}) { |m| "test/unit/test_#{m[1]}.rb" }
  watch(%r{^test/unit/test_(.+)\.rb$})
  watch('test/test_helper.rb') { 'test' }
  watch('test/helpers/**/*') { 'test' }
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
twtest-1.2.0 Guardfile
twtest-1.1.0 Guardfile
taskwarrior-1.0.2 Guardfile
taskwarrior-1.0.1 Guardfile
taskwarrior-1.0.0 Guardfile
twtest-1.0.1 Guardfile
twtest-1.0.0 Guardfile