class RSpec::Core::RakeTask

def run_task(verbose)

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