class Numeric

Public Instance Methods

to_j(indent = 0) click to toggle source

@return [String] Json for the numeric value

# File lib/numeric.rb, line 3
def to_j(indent = 0)
  "  "*indent + self.to_s
end