class RSpec::Core::Runner

def self.run(args, err=$stderr, out=$stdout)

* +Fixnum+ - exit status code (0/1)
#### Returns

* +out+ - output stream (Default: $stdout)
* +err+ - error stream (Default: $stderr)
* +args+ - an array of command-line-supported arguments
#### Parameters

instead of `require`.
want files like spec_helper.rb to be reloaded, be sure to load `load`
If you want to run this multiple times in the same process, and you

for use by any other automation tool.
This is used internally by RSpec to run a suite, but is available

Run a suite of RSpec examples.
def self.run(args, err=$stderr, out=$stdout)
  trap_interrupt
  options = ConfigurationOptions.new(args)
  options.parse_options
  if options.options[:drb]
    begin
      DRbCommandLine.new(options).run(err, out)
    rescue DRb::DRbConnError
      err.puts "No DRb server is running. Running in local process instead ..."
      CommandLine.new(options).run(err, out)
    end
  else
    CommandLine.new(options).run(err, out)
  end
ensure
  RSpec.reset
end