Hi there; Thanks for the gem!
With the following test_case.rb file:
let(:valid_data)doBase64.decode64<<~EOF aGVsbG8gd29ybGQK EOFend
And running the command:
bundle exec stree format --print-width=100 ./test_case.rb
The resulting code appears to be less intuitive to read:
let(:valid_data){Base64.decode64<<~EOF} aGVsbG8gd29ybGQK EOFExpected result:
let(:valid_data)doBase64.decode64<<~EOF aGVsbG8gd29ybGQK EOFend
Versions:
$ ruby --version
ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x86_64-darwin23]
$ bundle exec stree version 6.2.0
Apologies if I've reported this issue to the wrong repo or I've misunderstood the output; thanks!
Hi there; Thanks for the gem!
With the following
test_case.rbfile:And running the command:
The resulting code appears to be less intuitive to read:
Expected result:
Versions:
Apologies if I've reported this issue to the wrong repo or I've misunderstood the output; thanks!