Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
indent(count = 1)
public
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