Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/easyfire.rb
Instance Method Summary collapse
Instance Method Details
#uncapitalize ⇒ Object
15 16 17 |
# File 'lib/easyfire.rb', line 15 def uncapitalize self[0, 1].downcase + self[1..-1] end |