Sha256: f0696726284e8dc966cf98bf527748ed0c5ec11b52e218af9d1df15a8791eb11
Contents?: true
Size: 587 Bytes
Versions: 23
Compression:
Stored size: 587 Bytes
Contents
module Sinatra::Partials def partial(template, *args) template_array = template.to_s.split('/') template = template_array[0..-2].join('/') + "/_#{template_array[-1]}" options = args.last.is_a?(Hash) ? args.pop : {} options.merge!(:layout => false) if collection = options.delete(:collection) then collection.inject([]) do |buffer, member| buffer << haml(:"#{template}", options.merge(:layout => false, :locals => {template_array[-1].to_sym => member})) end.join("\n") else haml(:"#{template}", options) end end end
Version data entries
23 entries across 23 versions & 1 rubygems