technekes/nib

View on GitHub
lib/core_extensions/string.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class String
  # Implementation from active_support https://git.io/vNVlN
  def strip_heredoc
    gsub(/^#{scan(/^[ \t]*(?=\S)/).min}/, ''.freeze)
  end
end