Top Level Namespace

Instance Method Summary collapse

Instance Method Details

#unindent(string) ⇒ Object



33
34
35
36
# File 'bin/yiifony', line 33

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