Skip to content

Instantly share code, notes, and snippets.

@awesome
Created September 29, 2017 21:40
Show Gist options
  • Save awesome/e85b84b255efa4163fc6d8a6c81ed9fd to your computer and use it in GitHub Desktop.
Save awesome/e85b84b255efa4163fc6d8a6c81ed9fd to your computer and use it in GitHub Desktop.
"Ruby on Rails uncapitalize first letter" string camelcase with lowercase first char using ActiveSupport
require 'active_support/all'
# https://stackoverflow.com/questions/4474028/ruby-on-rails-uncapitalize-first-letter#13083654
"coolat_cat".camelize(:lower) # => "coolCat"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment