Version 1
[yaffs-website] / Guardfile
1 # A sample Guardfile
2 # More info at https://github.com/guard/guard#readme
3
4 ## Uncomment and set this to only include directories you want to watch
5 # directories %w(app lib config test spec features) \
6 #  .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
8 ## Note: if you are using the `directories` clause above and you are not
9 ## watching the project directory ('.'), then you will want to move
10 ## the Guardfile to a watched dir and symlink it back, e.g.
11 #
12 #  $ mkdir config
13 #  $ mv Guardfile config/
14 #  $ ln -s config/Guardfile .
15 #
16 # and, you'll have to watch "config/Guardfile" instead of "Guardfile"