class Bundler::UI::Shell

def confirm(msg)

def confirm(msg)
  @shell.say(msg, :green)
end

def debug(msg)

TODO: Add debug mode
def debug(msg)
end

def error(msg)

def error(msg)
  @shell.say(msg, :red)
end

def info(msg)

def info(msg)
  @shell.say(msg)
end

def initialize(shell)

def initialize(shell)
  @shell = shell
end

def warn(msg)

def warn(msg)
  @shell.say(msg, :yellow)
end