class Cucumber::Cli::Options

def initialize(out_stream = STDOUT, error_stream = STDERR, options = {})

def initialize(out_stream = STDOUT, error_stream = STDERR, options = {})
  @out_stream   = out_stream
  @error_stream = error_stream
  @default_profile = options[:default_profile]
  @skip_profile_information = options[:skip_profile_information]
  @profiles = []
  @overridden_paths = []
  @options = default_options
  
  @quiet = @disable_profile_loading = nil
end