class Yukichi
Constants
- VERSION
Public Class Methods
new(num)
click to toggle source
# File lib/yukichi.rb, line 8 def initialize(num) case num when Integer @num = num when String @num = num.to_arabic_numeral end end