Skip to content

Commit

Permalink
Merge pull request #859 from le0pard/patch-1
Browse files Browse the repository at this point in the history
Do not fail with enable-frozen-string-literal
  • Loading branch information
andy stone committed Oct 19, 2020
2 parents 270866a + 6efeb10 commit a34db74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/slim/embedded.rb
Expand Up @@ -155,7 +155,7 @@ def tilt_render(tilt_engine, tilt_options, text)
text = tilt_engine.new(tilt_options.merge(
style: options[:pretty] ? :expanded : :compressed,
cache: false)) { text }.render
text.chomp!
text = text.chomp
[:static, text]
end
end
Expand Down

0 comments on commit a34db74

Please sign in to comment.