Sha256: 8c28abc70fd3b5671cde53e4a4b60accd9ea7f0ee99b22383df2ac5b55ba0ff0

Contents?: true

Size: 755 Bytes

Versions: 5

Compression:

Stored size: 755 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(lib) \
#  .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 :shell do
  watch(%r{^lib/(.+)/*$}) { `rake` }
end

guard :livereload, grace_period: 0.5, override_url: true do
  watch(%r{.+\.(css|js|html)})
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
source_route-0.6.0 Guardfile
source_route-0.5.0 Guardfile
source_route-0.4.0 Guardfile
source_route-0.3.0 Guardfile
source_route-0.2.0 Guardfile