mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
16 lines
442 B
Ruby
16 lines
442 B
Ruby
|
require 'builder'
|
||
|
|
||
|
module ActionView
|
||
|
module TemplateHandlers
|
||
|
class Builder < TemplateHandler
|
||
|
def compile(template)
|
||
|
content_type_handler = (@view.send!(:controller).respond_to?(:response) ? "controller.response" : "controller")
|
||
|
"#{content_type_handler}.content_type ||= Mime::XML\n" +
|
||
|
"xml = Builder::XmlMarkup.new(:indent => 2)\n" +
|
||
|
template +
|
||
|
"\nxml.target!\n"
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|