Module: WIP::Runner::Spec::Helpers::StringHelpers

Defined in:
lib/wip/runner/spec/helpers/string_helpers.rb

Instance Method Summary collapse

Instance Method Details

#strip_heredoc(string) ⇒ Object



4
5
6
7
# File 'lib/wip/runner/spec/helpers/string_helpers.rb', line 4

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