module Stache::AssetHelper

Public Instance Methods

template_include_tag(*sources) click to toggle source

template_include_tag(“widgets/basic_text_api_data”) template_include_tag(“shared/test_thing”)

# File lib/stache/asset_helper.rb, line 5
def template_include_tag(*sources)
  options = sources.extract_options!
  sources.collect do |source|
    template_finder = lambda do |partial|
      if ActionPack::VERSION::MAJOR == 3 && ActionPack::VERSION::MINOR < 2
        lookup_context.find(source, [], partial)
      else # Rails 3.2 and higher
        lookup_context.find(source, [], partial, [], { formats: [:html] })
      end
    end

    template = template_finder.call(true) rescue template_finder.call(false)
    template_id = (Stache.include_path_in_id) ? source.gsub("/", '_') : source.to_s.split("/").last
    content_tag(:script, template.source.html_safe, options.reverse_merge(type: 'text/html', id: template_id.dasherize.underscore))

  end.join("\n").html_safe
end