Module: Stache::AssetHelper
- Defined in:
- lib/stache/asset_helper.rb
Instance Method Summary collapse
-
#template_include_tag(*sources) ⇒ Object
template_include_tag(“widgets/basic_text_api_data”) template_include_tag(“shared/test_thing”).
Instance Method Details
#template_include_tag(*sources) ⇒ Object
template_include_tag(“widgets/basic_text_api_data”) template_include_tag(“shared/test_thing”)
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/stache/asset_helper.rb', line 5 def template_include_tag(*sources) = sources. 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, .reverse_merge(type: 'text/html', id: template_id.dasherize.underscore)) end.join("\n").html_safe end |