class RSpec::Core::CommandLine

def initialize(options, configuration=RSpec.configuration, world=RSpec.world)

def initialize(options, configuration=RSpec.configuration, world=RSpec.world)
  if Array === options
    RSpec.deprecate("Instantiating a `RSpec::Core::CommandLine` with an array of options",
                    :replacement => "Instantiate a `RSpec::Core::Runner` with a `RSpec::Core::ConfigurationOptions` instance")
    options = ConfigurationOptions.new(options)
    options.parse_options
  else
    RSpec.deprecate("`RSpec::Core::CommandLine`", :replacement => "`RSpec::Core::Runner`")
  end
  super
end