Sha256: caf0f2066df6edfeec62cf396534142e5ca48a3ce0ad999e05d0c623e27c5041
Contents?: true
Size: 558 Bytes
Versions: 66
Compression:
Stored size: 558 Bytes
Contents
if defined?(ActiveSupport) require 'haml/template/options' ActiveSupport.on_load(:before_initialize) do ActiveSupport.on_load(:action_view) do require "haml/template" end end end module Haml class Railtie < ::Rails::Railtie initializer :haml do |app| require "haml/template" if defined?(::Sass::Rails::SassTemplate) && app.config.assets.enabled require "haml/sass_rails_filter" end end end end require "haml/helpers/safe_erubis_template" Haml::Filters::Erb.template_class = Haml::SafeErubisTemplate
Version data entries
66 entries across 58 versions & 10 rubygems