From dd1a5cbb491c9121eb07d9722f7d5f55ec933160 Mon Sep 17 00:00:00 2001 From: Ryan McGeary Date: Tue, 20 Sep 2011 16:24:00 -0300 Subject: [PATCH] Fixed comments in example scaffold to reference interactions instead of signal handlers --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 05048c3..2c708bb 100644 --- a/README.md +++ b/README.md @@ -412,18 +412,18 @@ module Guard true 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 true 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/... def reload true 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/... def run_all true