flowerbox-delivery/lib/flowerbox/delivery/tilt/jst_template.rb

15 lines
244 B
Ruby
Raw Normal View History

2012-02-08 17:41:18 +00:00
require 'tilt'
class Flowerbox::Delivery::Tilt::JSTTemplate < Sprockets::JstProcessor
EXTENSION = "jst"
include Flowerbox::Delivery::Tilt::TemplateThatSaves
def evaluate(scope, locals, &block)
super
handle_evaluate
end
end