module Gabuzomeu::Integer

Constants

GABUZOMEU

Public Instance Methods

to_s(base = 10) click to toggle source
Calls superclass method
# File lib/gabuzomeu.rb, line 6
def to_s(base = 10)
  if base == :gabuzomeu
    self.to_s(4).each_char.map { |char| GABUZOMEU[char.to_i] }.join(" ")
  else
    super(base)
  end
end