Merge branch 'master' of http://github.com/oliamb/guard into oliamb-master

This commit is contained in:
Thibaud Guillaume-Gentil 2010-10-26 20:16:11 +02:00
commit 9c89577a6d
2 changed files with 4 additions and 1 deletions

View File

@ -134,7 +134,9 @@ lib/guard/guard-name.rb inherit from guard/guard and should overwrite at least o
true true
end end
# Call with Ctrl-C signal (when Guard quit) # Call with Ctrl-C signal (when Guard quit).
# This method must return a true value
# if everything went well or guard will not stop.
def stop def stop
true true
end end

View File

@ -30,6 +30,7 @@ module Guard
true true
end end
# Retrieve a true value if the instance successfuly stopped
def stop def stop
true true
end end