Sha256: 10ec84f305c384e2c5fa2c5e5a27313be133353c178fd952376df17b5b0640c2

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

module Haml

  # This module makes Haml work with Rails using the template handler API.
  class Plugin < ActionView::Template::Handlers::ERB.superclass

    # Rails 3.1+, template handlers don't inherit from anything. In <= 3.0, they
    # do. To avoid messy logic figuring this out, we just inherit from whatever
    # the ERB handler does.

    # In Rails 3.1+, we don't need to include Compilable.
    if ActionPack::VERSION::MAJOR < 3 || (ActionPack::VERSION::MAJOR == 3 && ActionPack::VERSION::MINOR < 1)
      include ActionView::Template::Handlers::Compilable
    end

    def handles_encoding?; true; end

    def compile(template)
      options = Haml::Template.options.dup
      options[:mime_type] = template.mime_type if template.respond_to? :mime_type
      options[:filename] = template.identifier
      Haml::Engine.new(template.source, options).compiler.precompiled_with_ambles([])
    end

    # In Rails 3.1+, #call takes the place of #compile
    def self.call(template)
      new.compile(template)
    end

    def cache_fragment(block, name = {}, options = nil)
      @view.fragment_for(block, name, options) do
        eval("_hamlout.buffer", block.binding)
      end
    end
  end
end

ActionView::Template.register_template_handler(:haml, Haml::Plugin)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
haml-3.2.0.beta.3 lib/haml/template/plugin.rb
haml-3.2.0.beta.2 lib/haml/template/plugin.rb