Skip to content

Instantly share code, notes, and snippets.

@myobie
Created April 13, 2009 01:27
Show Gist options
  • Save myobie/94204 to your computer and use it in GitHub Desktop.
Save myobie/94204 to your computer and use it in GitHub Desktop.
# Extend String so we can keep our haml indented properly
class String
def indents
n = match(/^(\s+)/)
n = n.nil? ? 0 : n.captures.first.length
gsub(/^\s{0,#{n}}/, "")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment