aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/template_handler.rb')
-rw-r--r--actionpack/lib/action_view/template_handler.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template_handler.rb b/actionpack/lib/action_view/template_handler.rb
index b2c6ff3e36..d4892eccd3 100644
--- a/actionpack/lib/action_view/template_handler.rb
+++ b/actionpack/lib/action_view/template_handler.rb
@@ -1,5 +1,17 @@
module ActionView
class TemplateHandler
+ # Map method names to their compile time
+ cattr_accessor :compile_time
+ @@compile_time = {}
+
+ # Map method names to the names passed in local assigns so far
+ cattr_accessor :template_args
+ @@template_args = {}
+
+ # Count the number of inline templates
+ cattr_accessor :inline_template_count
+ @@inline_template_count = 0
+
def self.line_offset
0
end
@@ -29,5 +41,10 @@ module ActionView
# Called by CacheHelper#cache
def cache_fragment(block, name = {}, options = nil)
end
+
+ # This method reads a template file.
+ def read_template_file(template_path, extension)
+ File.read(template_path)
+ end
end
end