method
wrap_with_namespace
v7.2.3 -
Show latest stable
- Class:
Rails::Generators::Base
wrap_with_namespace(content)private
No documentation available.
# File railties/lib/rails/generators/base.rb, line 307
def wrap_with_namespace(content) # :doc:
content = indent(content).chomp
"module #{namespace.name}\n#{content}\nend\n"
end