module Threeve::Fixnum

Public Instance Methods

inspect() click to toggle source
Calls superclass method
# File lib/threeve/patches.rb, line 15
def inspect
  if self == threeve
    "threeve"
  else
    super
  end
end
to_s() click to toggle source
Calls superclass method
# File lib/threeve/patches.rb, line 7
def to_s
  if self == threeve
    "threeve"
  else
    super
  end
end