Class: Integer
Instance Method Summary collapse
Instance Method Details
#to_string(length, base = 10) ⇒ Object
4 5 6 |
# File 'lib/omu_support/core_ext/integer.rb', line 4 def to_string(length, base = 10) to_s(base).upcase.rjust(length, '0') end |