class String

Public Instance Methods

realign_indentation() click to toggle source
# 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_lines.map { |s| s[basis..-1] }.join
end
to_lines() click to toggle source
# File lib/templater/core_ext/string.rb, line 9
def to_lines
  lines.to_a
end