Sha256: ce2f4c43fac6542ea4583664d69f998c817904d154b413528a4fd59840440451
Contents?: true
Size: 683 Bytes
Versions: 1
Compression:
Stored size: 683 Bytes
Contents
module Restfulie module Server module ActionView module TemplateHandlers class Tokamak < ::ActionView::TemplateHandler include ::ActionView::TemplateHandlers::Compilable def compile(template) "@restfulie_type_helpers = Restfulie::Client::HTTP::RequestMarshaller.content_type_for(self.response.content_type).helper; " + "extend @restfulie_type_helpers; " + "extend Restfulie::Server::ActionView::Helpers; " + "code_block = lambda { #{template.source} };" + "builder = code_block.call; " + "builder.to_s" end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
restfulie-0.8.1 | lib/restfulie/server/action_view/template_handlers/tokamak.rb |