class ActiveSupport::ConfigurationFile
def render(context)
def render(context) require "erb" unless defined?(ERB) erb = ERB.new(@content).tap { |e| e.filename = @content_path } context ? erb.result(context) : erb.result end
def render(context) require "erb" unless defined?(ERB) erb = ERB.new(@content).tap { |e| e.filename = @content_path } context ? erb.result(context) : erb.result end