Skip to content

Instantly share code, notes, and snippets.

@bcelenza
Created October 10, 2014 21:51
Show Gist options
  • Save bcelenza/d8e0de490485eee00688 to your computer and use it in GitHub Desktop.
Save bcelenza/d8e0de490485eee00688 to your computer and use it in GitHub Desktop.
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