Method: IsoDoc::Metadata#months

Defined in:
lib/isodoc/metadata_date.rb

#monthsObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/isodoc/metadata_date.rb', line 8

def months
  {
    "01": @labels["month_january"],
    "02": @labels["month_february"],
    "03": @labels["month_march"],
    "04": @labels["month_april"],
    "05": @labels["month_may"],
    "06": @labels["month_june"],
    "07": @labels["month_july"],
    "08": @labels["month_august"],
    "09": @labels["month_september"],
    "10": @labels["month_october"],
    "11": @labels["month_november"],
    "12": @labels["month_december"],
  }
end