indent(count = 1)
Sets the output padding while executing a block and resets it.
# File lib/bundler/vendor/thor/lib/thor/shell/basic.rb, line 39 def indent(count = 1) orig_padding = padding self.padding = padding + count yield self.padding = orig_padding end