There's no documentation for this item.
Source Code
# File merb/core_ext/inflections.rb, line 64 def camelize(first_letter = :upper) case first_letter when :upper then Inflector.camelize(self, true) when :lower then Inflector.camelize(self, false) end end
<code/>and<pre/>for code samples.