require 'tilt' module HoganAssets class Tilt < Tilt::Template self.default_mime_type = 'application/javascript' def initialize_engine require_template_library 'haml' rescue LoadError # haml not available end def evaluate(scope, locals, &block) template_path = TemplatePath.new scope text = if template_path.is_hamstache? raise "Unable to complile #{template_path.full_path} because haml is not available. Did you add the haml gem?" unless HoganAssets::Config.haml_available? Haml::Engine.new(data, @options).render else data end compiled_template = Hogan.compile(text) template_name = scope.logical_path.inspect # Only emit the source template if we are using lambdas text = '' unless HoganAssets::Config.lambda_support? <<-TEMPLATE this.HoganTemplates || (this.HoganTemplates = {}); this.HoganTemplates[#{template_path.name}] = new Hogan.Template(#{compiled_template}, #{text.inspect}, Hogan, {}); TEMPLATE end protected def prepare; end class TemplatePath attr_accessor :full_path def initialize(scope) self.template_path = scope.logical_path self.full_path = scope.pathname end def is_hamstache? full_path.to_s.end_with? '.hamstache' end def name @name ||= relative_path.dump end private attr_accessor :template_path def relative_path @relative_path ||= template_path.gsub(/^#{HoganAssets::Config.path_prefix}\/(.*)$/i, "\\1") end end end end