class RSpec::Core::ConfigurationOptions

def global_options_file

def global_options_file
  begin
    File.join(File.expand_path("~"), ".rspec")
  rescue ArgumentError
    RSpec.warning "Unable to find ~/.rspec because the HOME environment variable is not set"
    nil
  end
end