Top Level Namespace

Defined Under Namespace

Modules: Migratification

Instance Method Summary collapse

Instance Method Details

#unindent(string) ⇒ Object



37
38
39
40
# File 'bin/migratify', line 37

def unindent(string)
  indentation = string[/\A\s*/]
  string.strip.gsub(/^#{indentation}/, "")
end