Skip to content
This repository has been archived by the owner on Jan 21, 2025. It is now read-only.

Commit

Permalink
guard: only select the app's files
Browse files Browse the repository at this point in the history
  • Loading branch information
freesteph committed Jul 9, 2024
1 parent 7a8ad58 commit 45d683f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# 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")}
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
Expand Down

0 comments on commit 45d683f

Please sign in to comment.