Sha256: 647e035245c099692e300320807c19b8d4e80b1c5e5b4ebc68a2b079195deb2f

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

## Uncomment and set this to only include directories you want to watch
# directories %w(app lib config test spec features) \
#  .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}

## Note: if you are using the `directories` clause above and you are not
## watching the project directory ('.'), then you will want to move
## the Guardfile to a watched dir and symlink it back, e.g.
#
#  $ mkdir config
#  $ mv Guardfile config/
#  $ ln -s config/Guardfile .
#
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"

guard :rubocop do
  watch(/.+\.rb$/)
  watch(/.+\.gemspec$/)
  watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
end

guard :minitest do
  # with Minitest::Unit
  watch(%r{^test/(.*)/?test_(.*)\.rb$})
  # watch(%r{^lib/(.*/)?([^/]+)\.rb$})     { |m| "test/#{m[1]}test_#{m[2]}.rb" }
  watch(%r{^lib/(.*/)?([^/]+)\.rb$})     { 'test' }
  watch(%r{^test/test_helper\.rb$})      { 'test' }
  watch(%r{^test/support/.*$})           { 'test' }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hash_deep_diff-0.4.0 Guardfile
hash_deep_diff-0.3.3 Guardfile
hash_deep_diff-0.3.2 Guardfile
hash_deep_diff-0.3.1 Guardfile
hash_deep_diff-0.3.0 Guardfile