class Bundler::Settings

def pretty_values_for(exposed_key)

def pretty_values_for(exposed_key)
  key = key_for(exposed_key)
  locations = []
  if value = @temporary[key]
    locations << "Set for the current command: #{printable_value(value, exposed_key).inspect}"
  end
  if value = @local_config[key]
    locations << "Set for your local app (#{local_config_file}): #{printable_value(value, exposed_key).inspect}"
  end
  if value = @env_config[key]
    locations << "Set via #{key}: #{printable_value(value, exposed_key).inspect}"
  end
  if value = @global_config[key]
    locations << "Set for the current user (#{global_config_file}): #{printable_value(value, exposed_key).inspect}"
  end
  return ["You have not configured a value for `#{exposed_key}`"] if locations.empty?
  locations
end