Class: String

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

Instance Method Summary collapse

Instance Method Details

#realign_indentationObject



3
4
5
6
# File 'lib/templater/core_ext/string.rb', line 3

def realign_indentation
  basis = self.index(/\S/) # find the first non-whitespace character
  return self.to_a.map { |s| s[basis..-1] }.join
end