summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/rdoc/erb_partial.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/rdoc/erb_partial.rb')
-rw-r--r--ruby_2_2/lib/rdoc/erb_partial.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/ruby_2_2/lib/rdoc/erb_partial.rb b/ruby_2_2/lib/rdoc/erb_partial.rb
deleted file mode 100644
index 910d1e0351..0000000000
--- a/ruby_2_2/lib/rdoc/erb_partial.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-##
-# Allows an ERB template to be rendered in the context (binding) of an
-# existing ERB template evaluation.
-
-class RDoc::ERBPartial < ERB
-
- ##
- # Overrides +compiler+ startup to set the +eoutvar+ to an empty string only
- # if it isn't already set.
-
- def set_eoutvar compiler, eoutvar = '_erbout'
- super
-
- compiler.pre_cmd = ["#{eoutvar} ||= ''"]
- end
-
-end
-