class RSpec::Core::CommandLine

def run(err, out)

def run(err, out)
  configuration.error_stream = err
  configuration.output_stream = out
  world.announce_inclusion_filter
  configuration.reporter.report(example_count) do |reporter|
    example_groups.run_examples(reporter)
  end
  
  example_groups.success?
end