rufo icon indicating copy to clipboard operation
rufo copied to clipboard

Heredocs in blocks result in invalid code

Open jbarber opened this issue 1 year ago • 0 comments

With rufo 0.18.0 the following code:

def foo
  puts yield
end

foo do <<-EOS
Random text
EOS
end

is formatted to:

def foo
  puts yield
end

foo do <<-EOS
Random text
EOS end

which is no longer valid ruby code.

jbarber avatar Jul 12 '24 09:07 jbarber