Sha256: cf3b74ea0bb418294d675a21b6f3f4bc7a3facc728d34b8736eb1d083c85bd5a

Contents?: true

Size: 727 Bytes

Versions: 7

Compression:

Stored size: 727 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.exists?(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 'yard' do
  watch(%r{app\/.+\.rb})
  watch(%r{lib\/.+\.rb})
  watch(%r{ext\/.+\.c})
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
etude_for_aws-0.7.10 Guardfile
etude_for_aws-0.7.9 Guardfile
etude_for_aws-0.7.8 Guardfile
etude_for_aws-0.7.7 Guardfile
etude_for_aws-0.7.6 Guardfile
etude_for_aws-0.7.5 Guardfile
etude_for_aws-0.7.4 Guardfile