class Bundler::Thor::Shell::Basic

def mute


Mute everything that's inside given block
def mute
  @mute = true
  yield
ensure
  @mute = false
end