Skip to content

Instantly share code, notes, and snippets.

@fkaa
Created June 12, 2014 10:22
Show Gist options
  • Select an option

  • Save fkaa/26028184de96d7299d27 to your computer and use it in GitHub Desktop.

Select an option

Save fkaa/26028184de96d7299d27 to your computer and use it in GitHub Desktop.
def to_camel_case(str)
h, *t = *str.split(/[\W_]/)
str.empty? ? '' : (h ||= '') << t.map(&:capitalize).join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment