Fixed comments in example scaffold to reference interactions instead of signal handlers
This commit is contained in:
parent
c0dcef9dbc
commit
dd1a5cbb49
@ -412,18 +412,18 @@ module Guard
|
|||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
# Called on Ctrl-C signal (when Guard quits)
|
# Called when `stop|quit|exit|s|q|e + enter` is pressed (when Guard quits)
|
||||||
def stop
|
def stop
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
# Called on Ctrl-Z signal
|
# Called when `reload|r|z + enter` is pressed
|
||||||
# This method should be mainly used for "reload" (really!) actions like reloading passenger/spork/bundler/...
|
# This method should be mainly used for "reload" (really!) actions like reloading passenger/spork/bundler/...
|
||||||
def reload
|
def reload
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
# Called on Ctrl-\ signal
|
# Called when just `enter` is pressed
|
||||||
# This method should be principally used for long action like running all specs/tests/...
|
# This method should be principally used for long action like running all specs/tests/...
|
||||||
def run_all
|
def run_all
|
||||||
true
|
true
|
||||||
|
Loading…
Reference in New Issue
Block a user