X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=vendor%2Frails%2Factionpack%2Flib%2Faction_view%2Ftemplate_handler.rb;fp=vendor%2Frails%2Factionpack%2Flib%2Faction_view%2Ftemplate_handler.rb;h=d7e7c9b199e81fc02b95ca379e8f1fb68071ba0c;hb=d115f2e23823271635bad69229a42cd8ac68debe;hp=0000000000000000000000000000000000000000;hpb=37cb670bf3ddde90b214e591f100ed4446469484;p=depot.git

diff --git a/vendor/rails/actionpack/lib/action_view/template_handler.rb b/vendor/rails/actionpack/lib/action_view/template_handler.rb
new file mode 100644
index 0000000..d7e7c9b
--- /dev/null
+++ b/vendor/rails/actionpack/lib/action_view/template_handler.rb
@@ -0,0 +1,14 @@
+# Legacy TemplateHandler stub
+
+module ActionView
+  module TemplateHandlers
+    module Compilable
+    end
+  end
+
+  class TemplateHandler
+    def self.call(template)
+      new.compile(template)
+    end
+  end
+end