Class: String

Inherits:
Object show all
Defined in:
lib/daiku/core_ext.rb

Instance Method Summary collapse

Instance Method Details

#strip_heredocObject



32
33
34
35
# File 'lib/daiku/core_ext.rb', line 32

def strip_heredoc
  indent = scan(/^[ \t]*(?=\S)/).min.try(:size) || 0
  gsub(/^[ \t]{#{indent}}/, '')
end