Skip to content

Commit

Permalink
Use Liquid::Utils.to_s for join filter (#1897)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks authored Jan 16, 2025
1 parent 74af735 commit 0ec52a4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
13 changes: 12 additions & 1 deletion lib/liquid/standardfilters.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,18 @@ def initialize(input, context)
end

def join(glue)
to_a.join(glue.to_s)
first = true
output = +""
@input.each do |item|
if first
first = false
else
output << glue
end

output << Liquid::Utils.to_s(item)
end
output
end

def concat(args)
Expand Down
6 changes: 6 additions & 0 deletions test/integration/hash_rendering_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ def test_render_hash_with_array_values_hash
assert_template_result("{\"numbers\"=>[{:foo=>42}]}", "{{ my_hash }}", { "my_hash" => { "numbers" => [{ foo: 42 }] } })
end

def test_join_filter_with_hash
array = [{ "key1" => "value1" }, { "key2" => "value2" }]
glue = { "lol" => "wut" }
assert_template_result("{\"key1\"=>\"value1\"}{\"lol\"=>\"wut\"}{\"key2\"=>\"value2\"}", "{{ my_array | join: glue }}", { "my_array" => array, "glue" => glue })
end

def test_render_hash_with_hash_key
assert_template_result("{{\"foo\"=>\"bar\"}=>42}", "{{ my_hash }}", { "my_hash" => { Hash["foo" => "bar"] => 42 } })
end
Expand Down

0 comments on commit 0ec52a4

Please sign in to comment.