summaryrefslogtreecommitdiff
path: root/lib/rdoc/erb_partial.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/erb_partial.rb')
-rw-r--r--lib/rdoc/erb_partial.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/rdoc/erb_partial.rb b/lib/rdoc/erb_partial.rb
deleted file mode 100644
index d17dda20a9..0000000000
--- a/lib/rdoc/erb_partial.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: false
-##
-# 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
-