module ISO3166::CountrySubdivisionMethods

def humanize_string(str)

def humanize_string(str)
  (str[0].upcase + str.tr('_', ' ')[1..]).freeze
end