Class: Bundler::Thor::Actions::CapturableERB
- Inherits:
-
ERB
- Object
- ERB
- Bundler::Thor::Actions::CapturableERB
- Defined in:
- lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb
Overview
Bundler::Thor::Actions#capture depends on what kind of buffer is used in ERB. Thus CapturableERB fixes ERB to use String buffer.
Instance Method Summary collapse
Instance Method Details
#set_eoutvar(compiler, eoutvar = "_erbout") ⇒ Object
365 366 367 368 369 370 |
# File 'lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb', line 365 def set_eoutvar(compiler, eoutvar = "_erbout") compiler.put_cmd = "#{eoutvar}.concat" compiler.insert_cmd = "#{eoutvar}.concat" compiler.pre_cmd = ["#{eoutvar} = ''.dup"] compiler.post_cmd = [eoutvar] end |