camelize(first_letter = :upper)
Instance Public methods
By default, camelize
converts strings to UpperCamelCase. If
the argument to camelize is set to :lower
then camelize
produces lowerCamelCase.
camelize
will also convert '/' to '::' which
is useful for converting paths to namespaces.
1 2 3 4 | 'active_record' .camelize # => "ActiveRecord" 'active_record' .camelize( :lower ) # => "activeRecord" 'active_record/errors' .camelize # => "ActiveRecord::Errors" 'active_record/errors' .camelize( :lower ) # => "activeRecord::Errors" |
Please login to continue.