class Thor::Shell::Basic

def padding=(value)


Sets the output padding, not allowing less than zero values.
def padding=(value)
  @padding = [0, value].max
end