1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_view/renderer/abstract_renderer.rb

30 lines
741 B
Ruby
Raw Normal View History

module ActionView
class AbstractRenderer #:nodoc:
delegate :find_template, :template_exists?, :with_fallbacks, :update_details,
:with_layout_format, :formats, :freeze_formats, :to => :@lookup_context
def initialize(lookup_context)
2011-05-01 04:33:30 -04:00
@lookup_context = lookup_context
end
def render
raise NotImplementedError
end
protected
def extract_details(options)
details = {}
@lookup_context.registered_details.each do |key|
next unless value = options[key]
2012-01-05 15:18:54 -05:00
details[key] = Array(value)
end
details
end
def instrument(name, options={})
ActiveSupport::Notifications.instrument("render_#{name}.action_view", options){ yield }
end
end
end