method
render
rails latest stable - Class:
ActiveSupport::ConfigurationFile
render(context)private
No documentation available.
# File activesupport/lib/active_support/configuration_file.rb, line 46
def render(context)
erb = ERB.new(@content).tap { |e| e.filename = @content_path }
context ? erb.result(context) : erb.result
end