Skip to content

Instantly share code, notes, and snippets.

@burtlo
Created September 6, 2012 15:10
Show Gist options
  • Save burtlo/3657191 to your computer and use it in GitHub Desktop.
Save burtlo/3657191 to your computer and use it in GitHub Desktop.
Monkeypatching
class String
  def capitalize
    self.gsub(/^[a-z]|\s+[a-z]/) { |a| a.upcase }
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment