Skip to content

Instantly share code, notes, and snippets.

@lezi
Created September 18, 2010 19:44
Show Gist options
  • Save lezi/585983 to your computer and use it in GitHub Desktop.
Save lezi/585983 to your computer and use it in GitHub Desktop.
class String
def camelize
self.split(/[^a-z0-9]/i).map{|w| w.capitalize}.join
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment