13 lines
318 B
Ruby
13 lines
318 B
Ruby
|
# 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
|