Support for the Ruby 2.1 series ended on March 31 2017. See here for details.

Rational

Public Class Methods

json_create(object) click to toggle source
 
 # File json/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 json/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 json/lib/json/add/rational.rb, line 19
def to_json(*)
 as_json.to_json
end
 

AltStyle によって変換されたページ (->オリジナル) /