Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Created October 24, 2011 02:37
Show Gist options
  • Save a2ikm/1308251 to your computer and use it in GitHub Desktop.
Save a2ikm/1308251 to your computer and use it in GitHub Desktop.
camelize
class String
def camelize
split("_").map { |part|
part[0] = part[0].upcase
part
}.join
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment