class Guard::RSpec::Runner

def _really_run(cmd, options)

def _really_run(cmd, options)
  # TODO: add option to specify the file
  file = _results_file(options[:results_file], options[:chdir])
  process = RSpecProcess.new(cmd, file, options)
  results = process.results
  inspector.failed(results.failed_paths)
  notifier.notify(results.summary)
  _open_launchy
  all_green = process.all_green?
  return yield all_green if block_given?
  all_green
end