Sha256: b87f4fcc30dd2cbcc5bbf1360a85611e9e924be67d098149fa38dd4e1457ffa2

Contents?: true

Size: 840 Bytes

Versions: 3

Compression:

Stored size: 840 Bytes

Contents

# 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 :minitest, all_on_start: false do
  # with Minitest::Unit
  watch(%r{^test/(.*)_test\.rb$})
  watch(%r{^lib/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
  watch(%r{^test/test_helper\.rb$}) { "test" }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
op_connect-0.1.3 Guardfile
op_connect-0.1.2 Guardfile
op_connect-0.1.1 Guardfile