aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/template/handlers/raw.rb
blob: 760f517431418fd00176c31bbffe249cefda7995 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionView
  module Template::Handlers
    class Raw
      def call(template)
        "#{template.source.inspect};"
      end
    end
  end
end