webserver-log-analyser/utils/date_for_humans.rb

13 lines
318 B
Ruby
Raw Normal View History

2024-05-17 11:56:03 +00:00
# frozen_string_literal: true
# array with list of months in portuguese
# @return [Array] list of months in portuguese
def months
%w[janeiro fevereiro março abril maio junho julho agosto setembro outubro novembro dezembro]
end
# Returns the month in portuguese
def month_for_humans(month)
months[month - 1]
end