public Method

Inflections.camelize(first_letter = :upper)

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
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.