2012-02-22 18:14:00 +00:00
|
|
|
module RablFastJson
|
|
|
|
module Handlers
|
|
|
|
class Rabl
|
|
|
|
cattr_accessor :default_format
|
|
|
|
self.default_format = 'application/json'
|
|
|
|
|
2012-04-09 23:03:07 +00:00
|
|
|
def self.call(template)
|
2012-02-22 18:14:00 +00:00
|
|
|
%{
|
2012-02-27 13:49:34 +00:00
|
|
|
RablFastJson::Library.instance.
|
|
|
|
get_rendered_template(#{template.source.inspect}, self)
|
2012-02-22 18:14:00 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|