summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPat Allan <pat@freelancing-gods.com>2017-06-28 10:36:18 +1000
committerPat Allan <pat@freelancing-gods.com>2017-06-28 10:36:18 +1000
commit761234f380b3e42c283e82d784826bae280f9075 (patch)
tree685fea8bd74cdc7ce86e7dd285fd35ef01bb7d73
parent368a28e26944edb5e6a59356d50683400695ab65 (diff)
downloadcoderay-761234f380b3e42c283e82d784826bae280f9075.tar.gz
Get tests running with frozen string literals.
-rw-r--r--lib/coderay/encoders/encoder.rb2
-rw-r--r--lib/coderay/encoders/html.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/coderay/encoders/encoder.rb b/lib/coderay/encoders/encoder.rb
index fa5695d..2baeedb 100644
--- a/lib/coderay/encoders/encoder.rb
+++ b/lib/coderay/encoders/encoder.rb
@@ -146,7 +146,7 @@ module CodeRay
end
def get_output options
- options[:out] || ''
+ options[:out] || ''.dup
end
# Append data.to_s to the output. Returns the argument.
diff --git a/lib/coderay/encoders/html.rb b/lib/coderay/encoders/html.rb
index 942b9c8..1b33e92 100644
--- a/lib/coderay/encoders/html.rb
+++ b/lib/coderay/encoders/html.rb
@@ -176,7 +176,7 @@ module Encoders
if options[:wrap] || options[:line_numbers]
@real_out = @out
- @out = ''
+ @out = ''.dup
end
@break_lines = (options[:break_lines] == true)
@@ -314,7 +314,7 @@ module Encoders
end
def break_lines text, style
- reopen = ''
+ reopen = ''.dup
@opened.each_with_index do |kind, index|
reopen << (@span_for_kinds[index > 0 ? [kind, *@opened[0...index]] : kind] || '<span>')
end