Skip to content
Snippets Groups Projects
Unverified Commit d40dcfe7 authored by Rémy Coutable's avatar Rémy Coutable Committed by GitHub
Browse files

Merge pull request #904 from meganemura/use-dir-exist

Replace deprecated Dir.exists? with Dir.exist?
parents fb49aec8 ecd6be67
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3,7 +3,7 @@
 
## 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")}
# .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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment