Class: String
Overview
Monkey patches for String
Direct Known Subclasses
Instance Method Summary collapse
-
#uncapitalize ⇒ String
Downcases the first letter of self, returning a new string.
Instance Method Details
#uncapitalize ⇒ String
Downcases the first letter of self, returning a new string
10 11 12 |
# File 'lib/kitchen/patches/string.rb', line 10 def uncapitalize sub(/^[A-Z]/, &:downcase) end |