aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/inline.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/template/inline.rb')
-rw-r--r--actionpack/lib/action_view/template/inline.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/inline.rb b/actionpack/lib/action_view/template/inline.rb
new file mode 100644
index 0000000000..be08065b6b
--- /dev/null
+++ b/actionpack/lib/action_view/template/inline.rb
@@ -0,0 +1,20 @@
+require 'digest/md5'
+
+module ActionView
+ class Template
+ class Inline < ::ActionView::Template
+ def initialize(source, handler, options={})
+ super(source, "inline template", handler, options)
+ end
+
+ def md5_source
+ @md5_source ||= Digest::MD5.hexdigest(source)
+ end
+
+ def eql?(other)
+ other.is_a?(Inline) && other.md5_source == md5_source
+ end
+ end
+ end
+end
+ \ No newline at end of file