class RailsBand::ActionView::Event::RenderTemplate

A wrapper for the event that is passed to ‘render_template.action_view`.

Public Instance Methods

identifier() click to toggle source
# File lib/rails_band/action_view/event/render_template.rb, line 12
def identifier
  @identifier ||= from_views(@event.payload.fetch(:identifier))
end
layout() click to toggle source
# File lib/rails_band/action_view/event/render_template.rb, line 16
def layout
  return @layout if defined? @layout

  @layout = @event.payload[:layout]&.yield_self { |layout| from_views(layout) }
end