Module: Gemmy::Patches::IntegerPatch::ClassMethods::RomanValues

Defined in:
lib/gemmy/patches/integer_patch.rb

Instance Method Summary collapse

Instance Method Details

#roman_valuesObject

facets



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

def roman_values
  [
    ["M", 1000],
    ["CM", 900],
    ["D",  500],
    ["CD", 400],
    ["C",  100],
    ["XC",  90],
    ["L",   50],
    ["XL",  40],
    ["X",   10],
    ["IX",   9],
    ["V",    5],
    ["IV",   4],
    ["I",    1]
  ].to_h
end