module Gemmy::Patches::IntegerPatch::ClassMethods::RomanValues

Public Instance Methods

roman_values() click to toggle source

facets

# 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