Pattern: Use of strip_heredoc
Issue: -
Enforces the use of squiggly heredoc over strip_heredoc
.
# bad
<<EOS.strip_heredoc
some text
EOS
# bad
<<-EOS.strip_heredoc
some text
EOS
# good
<<~EOS
some text
EOS
Pattern: Use of strip_heredoc
Issue: -
Enforces the use of squiggly heredoc over strip_heredoc
.
# bad
<<EOS.strip_heredoc
some text
EOS
# bad
<<-EOS.strip_heredoc
some text
EOS
# good
<<~EOS
some text
EOS