module Rails::Generators::Actions

def with_indentation(&block) # :doc:

:doc:
Manage +Gemfile+ indentation for a DSL action block
def with_indentation(&block) # :doc:
  @indentation += 1
  instance_eval(&block)
ensure
  @indentation -= 1
end