Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/core_extensions/string.rb

Instance Method Summary collapse

Instance Method Details

#strip_heredocObject

Implementation from active_support git.io/vNVlN



3
4
5
# File 'lib/core_extensions/string.rb', line 3

def strip_heredoc
  gsub(/^#{scan(/^[ \t]*(?=\S)/).min}/, ''.freeze)
end