Method: Guard.stop

Defined in:
lib/guard.rb

.stopObject

Stop Guard listening to file changes



162
163
164
165
166
167
168
169
170
171
# File 'lib/guard.rb', line 162

def stop
  UI.info 'Bye bye...', :reset => true

  run_on_guards do |guard|
    run_supervised_task(guard, :stop)
  end

  listener.stop
  abort
end