Sha256: d9a68428a5e5f14578538b3abc9e5b4a099520cc2938cd815a38412b48427045
Contents?: true
Size: 774 Bytes
Versions: 29
Compression:
Stored size: 774 Bytes
Contents
module RorVsWild module Plugin class ActionView def self.setup return if @installed return unless defined?(::ActiveSupport::Notifications.subscribe) ActiveSupport::Notifications.subscribe("render_partial.action_view", new) ActiveSupport::Notifications.subscribe("render_template.action_view", new) @installed = true end def start(name, id, payload) RorVsWild::Section.start end def finish(name, id, payload) RorVsWild::Section.stop do |section| section.kind = "view".freeze section.command = RorVsWild.agent.locator.relative_path(payload[:identifier]) section.file = section.command section.line = 1 end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems