method
camelize
v1.1.6 -
Show latest stable
- Class:
ActiveSupport::CoreExtensions::String::Inflections
camelize(first_letter = :upper)public
No documentation available.
# File activesupport/lib/active_support/core_ext/string/inflections.rb, line 15
def camelize(first_letter = :upper)
case first_letter
when :upper then Inflector.camelize(self, true)
when :lower then Inflector.camelize(self, false)
end
end