class Bundler::CLI::Config

def confirm_all

def confirm_all
  Bundler.ui.confirm "Settings are listed in order of priority. The top value will be used.\n"
  Bundler.settings.all.each do |setting|
    Bundler.ui.confirm "#{setting}"
    show_pretty_values_for(setting)
    Bundler.ui.confirm ""
  end
end