class Thor::Shell::Basic

def indent(count = 1)


Sets the output padding while executing a block and resets it.
def indent(count = 1)
  orig_padding = padding
  self.padding = padding + count
  yield
  self.padding = orig_padding
end