Remove indentation from heredocs
Ruby heredocs are a convenient way to include a block of text in Ruby source. Unfortunately, if the text is indented properly with the rest of the code the actual string is also indented. This is often undesired. However, it can be fixed by using the squiggly heredoc.
lorem = <<~STR
Lorem ipsum dolor sit amet,
consectetur adipiscing elit,
sed do eiusmod
STR
lorem #=> => "Lorem ipsum dolor sit amet,\nconsectetur adipiscing elit,\nsed do eiusmod\n"
The squiggly heredoc automatically removes any indentation that is applied to all lines.
Tweet