Sha256: 201a52e8e25c61b3fb722b284d3f6a6377829acd0a5a08694c54768bcb12326c
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 KB
Contents
# frozen_string_literal: true require 'temple' require 'haml/engine' require 'haml/rails_helpers' require 'haml/util' module Haml class RailsTemplate # Compatible with: https://github.com/judofyr/temple/blob/v0.7.7/lib/temple/mixins/options.rb#L15-L24 class << self def options @options ||= { generator: Temple::Generators::RailsOutputBuffer, use_html_safe: true, streaming: true, buffer_class: 'ActionView::OutputBuffer', disable_capture: true, } end def set_options(opts) options.update(opts) end end def call(template, source = nil) source ||= template.source options = RailsTemplate.options # https://github.com/haml/haml/blob/4.0.7/lib/haml/template/plugin.rb#L19-L20 # https://github.com/haml/haml/blob/4.0.7/lib/haml/options.rb#L228 if template.respond_to?(:type) && template.type == 'text/xml' options = options.merge(format: :xhtml) end if ActionView::Base.try(:annotate_rendered_view_with_filenames) && template.format == :html options = options.merge( preamble: "<!-- BEGIN #{template.short_identifier} -->\n", postamble: "<!-- END #{template.short_identifier} -->\n", ) end Engine.new(options).call(source) end def supports_streaming? RailsTemplate.options[:streaming] end end ActionView::Template.register_template_handler(:haml, RailsTemplate.new) end # Haml extends Haml::Helpers in ActionView each time. # It costs much, so Haml includes a compatible module at first. ActiveSupport.on_load(:action_view) do include Haml::RailsHelpers end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
haml-6.1.1-java | lib/haml/rails_template.rb |
haml-6.1.1 | lib/haml/rails_template.rb |
haml-6.1.0-java | lib/haml/rails_template.rb |
haml-6.1.0 | lib/haml/rails_template.rb |