class Bundler::CLI

def initialize(*)

def initialize(*)
  super
  the_shell = (options["no-color"] ? Thor::Shell::Basic.new : shell)
  Bundler.ui = UI::Shell.new(the_shell)
  Bundler.ui.debug! if options["verbose"]
  Bundler.rubygems.ui = UI::RGProxy.new(Bundler.ui)
end