Guardfile 632 B

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