class RSpec::Core::RakeTask

def run_task(verbose)

Other tags:
    Private: -
def run_task(verbose)
  command = spec_command
  begin
    puts command if verbose
    success = system(command)
  rescue
    puts failure_message if failure_message
  end
  return unless fail_on_error && !success
  $stderr.puts "#{command} failed"
  exit $?.exitstatus
end