Created
October 10, 2014 21:51
-
-
Save bcelenza/d8e0de490485eee00688 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
listener.start # not blocking | |
puts "Watching for file changes at." | |
puts "Ctrl+C to stop watching." | |
puts "" | |
puts "Watching..." | |
while listener.listen? do | |
sleep 0.5 | |
end | |
rescue SystemExit, Interrupt | |
listener.stop | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment