class Guard::Runner

def self.stopping_symbol_for(guard)

Returns:
  • (Symbol) - the symbol to catch

Parameters:
  • guard (Guard::Plugin) -- the Guard plugin to execute

Other tags:
    Note: - If a Guard group is being run and it has the `:halt_on_fail`
def self.stopping_symbol_for(guard)
  guard.group.options[:halt_on_fail] ? :no_catch : :task_has_failed
end