Created
October 20, 2013 12:54
-
-
Save babie/7069234 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
Earthquake.init do | |
_ = config[:auto_restart] ||= {} | |
_[:interval] ||= 60 * 60 | |
system "stty echo" # for readline | |
EM.defer do | |
sleep config[:auto_restart][:interval] | |
loop do | |
if Readline.line_buffer.nil? || Readline.line_buffer.empty? | |
STDOUT.print "auto " | |
input(":restart") | |
else | |
sleep 5 | |
redo | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment