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
José Valim 940b57789f Add support to render :once.
This will be used internally by sprockets to ensure requires are executed just once.
2010-10-10 12:43:26 +02:00

36 lines
No EOL
963 B
Ruby

module ActionView
class AbstractRenderer #:nodoc:
attr_reader :vew, :lookup_context
delegate :find_template, :template_exists?, :with_fallbacks, :update_details,
:with_layout_format, :formats, :to => :lookup_context
def initialize(view)
@view = view
@lookup_context = view.lookup_context
end
def render
raise NotImplementedError
end
# Checks if the given path contains a format and if so, change
# the lookup context to take this new format into account.
def wrap_formats(value)
return yield unless value.is_a?(String)
@@formats_regexp ||= /\.(#{Mime::SET.symbols.join('|')})$/
if value.sub!(@@formats_regexp, "")
update_details(:formats => [$1.to_sym]){ yield }
else
yield
end
end
protected
def instrument(name, options={})
ActiveSupport::Notifications.instrument("render_#{name}.action_view", options){ yield }
end
end
end