class String

Monkey patches for String

Public Instance Methods

uncapitalize() click to toggle source

Downcases the first letter of self, returning a new string

@return [String]

# File lib/kitchen/patches/string.rb, line 10
def uncapitalize
  sub(/^[A-Z]/, &:downcase)
end