Parent

Files

Rational

Public Class Methods

json_create(object) click to toggle source
# File lib/json/add/rational.rb, line 7
def self.json_create(object)
  Rational(object['n'], object['d'])
end

Public Instance Methods

as_json(*) click to toggle source
# File lib/json/add/rational.rb, line 11
def as_json(*)
  {
    JSON.create_id => self.class.name,
    'n'            => numerator,
    'd'            => denominator,
  }
end
to_json(*) click to toggle source
# File lib/json/add/rational.rb, line 19
def to_json(*)
  as_json.to_json
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.