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