Sha256: 8e0354d3c1915eb20be00efe5c0203c0f2dfebf1cf28b5f3768c164535327bd6

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 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$/)
end

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

guard 'yard' do
  watch(%r{lib/.+\.rb})
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hash_deep_diff-0.8.0 Guardfile
hash_deep_diff-0.7.0 Guardfile
hash_deep_diff-0.6.0 Guardfile