class RSpec::Core::ConfigurationOptions

def process_options_into(config)

def process_options_into(config)
  opts = options.reject { |k, _| UNPROCESSABLE_OPTIONS.include? k }
  order(opts.keys, :libs, :default_path, :pattern).each do |key|
    force?(key) ? config.force(key => opts[key]) : config.send("#{key}=", opts[key])
  end
end