method
indent
v2.1.0 -
Show latest stable
- Class:
Rails::Generator::SimpleLogger
indent(&block)public
No documentation available.
# File railties/lib/rails_generator/simple_logger.rb, line 18
def indent(&block)
@level += 1
if block_given?
begin
block.call
ensure
outdent
end
end
end