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

11 lines
210 B
Ruby
Raw Normal View History

2012-01-30 16:34:57 +00:00
require 'tilt'
class Flowerbox::Delivery::Tilt::JSTemplate < Tilt::Template
self.default_mime_type = "application/javascript"
2012-02-08 17:41:18 +00:00
EXTENSION = "js"
2012-01-30 16:34:57 +00:00
2012-02-08 17:41:18 +00:00
include Flowerbox::Delivery::Tilt::TemplateThatSaves
2012-01-30 16:34:57 +00:00
end