Sha256: d98958891c3d273eaf0f72ccfbf6285ae3451721157c0fb6b0ccd2173e140cf2
Contents?: true
Size: 1.69 KB
Versions: 4
Compression:
Stored size: 1.69 KB
Contents
# TILT Template if defined?(Tilt) class RablTemplate < Tilt::Template def initialize_engine return if defined?(::Rabl) require_template_library 'rabl' end def prepare options = @options.merge(:format => @options[:format], :source_location => file) @engine = ::Rabl::Engine.new(data, options) end def evaluate(context_scope, locals, &block) @engine.apply(context_scope, locals, &block).render end end Tilt.register 'rabl', RablTemplate end # Rails 2.X Template if defined?(ActionView) && defined?(Rails) && Rails.version.to_s =~ /^2/ require 'action_view/base' require 'action_view/template' module ActionView module TemplateHandlers class RablHandler < TemplateHandler include Compilable def compile(template) %{ ::Rabl::Engine.new(#{template.source.inspect}, { :format => #{template.format.inspect} }). render(self, assigns.merge(local_assigns)) } end end end end ActionView::Template.register_template_handler :rabl, ActionView::TemplateHandlers::RablHandler end # Rails 3.X / 4.X Template if defined?(ActionView) && defined?(Rails) && Rails.version.to_s =~ /^[34]/ module ActionView module Template::Handlers class Rabl class_attribute :default_format self.default_format = Mime::JSON def self.call(template) source = template.source %{ ::Rabl::Engine.new(#{source.inspect}). apply(self, assigns.merge(local_assigns)). render } end # call end # rabl class end # handlers end ActionView::Template.register_template_handler :rabl, ActionView::Template::Handlers::Rabl end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rabl-0.11.5 | lib/rabl/template.rb |
rabl-0.11.4 | lib/rabl/template.rb |
rabl-0.11.3 | lib/rabl/template.rb |
rabl-0.11.2 | lib/rabl/template.rb |