summaryrefslogtreecommitdiff
path: root/lib/erb.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 06:36:57 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 06:36:57 +0000
commit0516a3378f03e8563350b8c4fe94ac3f9e9c9f75 (patch)
treea285bd7b3433600fc89f0a17d8b9d4e2b709613b /lib/erb.rb
parent0f4978d5335b6e9fc04ff938966905f24688ff25 (diff)
* lib/erb.rb: revert r53123. It break compatibility like thor and rspec-rails.
We should try with Ruby 2.4 or 3.0. [Bug #11842][ruby-core:72374] * lib/rdoc/erb_partial.rb: ditto. * template/verconf.h.tmpl: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/erb.rb')
-rw-r--r--lib/erb.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/erb.rb b/lib/erb.rb
index b876ca4625..73fc574314 100644
--- a/lib/erb.rb
+++ b/lib/erb.rb
@@ -590,7 +590,7 @@ class ERB
end
def add_insert_cmd(out, content)
- out.push("#{@insert_cmd}((#{content}))")
+ out.push("#{@insert_cmd}((#{content}).to_s)")
end
# Compiles an ERB template into Ruby code. Returns an array of the code
@@ -835,10 +835,10 @@ class ERB
# requires the setup of an ERB _compiler_ object.
#
def set_eoutvar(compiler, eoutvar = '_erbout')
- compiler.put_cmd = "#{eoutvar}.push"
- compiler.insert_cmd = "#{eoutvar}.push"
- compiler.pre_cmd = ["#{eoutvar} = []"]
- compiler.post_cmd = ["#{eoutvar}.join.force_encoding(__ENCODING__)"]
+ compiler.put_cmd = "#{eoutvar}.concat"
+ compiler.insert_cmd = "#{eoutvar}.concat"
+ compiler.pre_cmd = ["#{eoutvar} = ''"]
+ compiler.post_cmd = ["#{eoutvar}.force_encoding(__ENCODING__)"]
end
# Generate results and print them. (see ERB#result)