Skip to content

Instantly share code, notes, and snippets.

@arosh
Created March 3, 2012 12:35
Show Gist options
  • Save arosh/1965879 to your computer and use it in GitHub Desktop.
Save arosh/1965879 to your computer and use it in GitHub Desktop.
toPascalCase
class String
def to_pascal_case
self.split("-").map {|s| s.capitalize }.join
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment