Module: ViewSourceMap

Defined in:
lib/view_source_map.rb,
lib/view_source_map/version.rb

Defined Under Namespace

Classes: Railtie

Constant Summary collapse

VERSION =
"0.0.7"

Class Method Summary collapse

Class Method Details

.attachObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/view_source_map.rb', line 10

def self.attach
  ActionView::PartialRenderer.class_eval do
    def render_with_path_comment(context, options, block)
      content = render_without_path_comment(context, options, block)

      if @lookup_context.rendered_format == :html
        if options[:layout]
          name = "#{options[:layout]}(layout)"
        else
          path = Pathname.new(@template.identifier)
          name = path.relative_path_from(Rails.root)
        end
        "<!-- BEGIN #{name} -->#{content}<!-- END #{name} -->".html_safe
      else
        content
      end
    end
    alias_method_chain :render, :path_comment
  end

  ActionView::TemplateRenderer.class_eval do
    def render_template_with_path_comment(template, layout_name = nil, locals = {})
      view, locals = @view, locals || {}

      render_with_layout(layout_name, locals) do |layout|
        instrument(:template, :identifier => template.identifier, :layout => layout.try(:virtual_path)) do
          content = template.render(view, locals) { |*name| view._layout_for(*name) }
          if @lookup_context.rendered_format == :html and template.class != ActionView::Template::Text
            path = Pathname.new(template.identifier)
            name = path.relative_path_from(Rails.root)
            "<!-- BEGIN #{name} -->#{content}<!-- END #{name} -->".html_safe
          else
            content
          end
        end
      end
    end
    alias_method_chain :render_template, :path_comment
  end
end

.detachObject



51
52
53
54
55
56
57
58
59
60
61
# File 'lib/view_source_map.rb', line 51

def self.detach
  ActionView::PartialRenderer.class_eval do
    undef_method :render_with_path_comment
    alias_method :render, :render_without_path_comment
  end

  ActionView::TemplateRenderer.class_eval do
    undef_method :render_template_with_path_comment
    alias_method :render_template, :render_template_without_path_comment
  end
end