class Guard::RSpec::Runner

def _run(paths, options, &block)

def _run(paths, options, &block)
  raise NoCmdOptionError unless options[:cmd]
  command = Command.new(paths, options)
  _really_run(command, options, &block)
rescue RSpecProcess::Failure, NoCmdOptionError => ex
  Compat::UI.error(ex.to_s)
  notifier.notify_failure
  false
end