class Capitalize

Constants

VERSION

Public Instance Methods

process(str) click to toggle source
# File lib/capitalize.rb, line 5
def process(str)
    country_list = Countries::COUNTRIES
    result = country_list[str] || "Sorry, the Boss is sleeping."
    result
end