method
json_create
v1_9_1_378 -
Show latest stable
- Class:
DateTime
json_create(object)public
No documentation available.
# File ext/json/lib/json/add/core.rb, line 50
def self.json_create(object)
args = object.values_at('y', 'm', 'd', 'H', 'M', 'S')
of_a, of_b = object['of'].split('/')
if of_b and of_b != '0'
args << Rational(of_a.to_i, of_b.to_i)
else
args << of_a
end
args << object['sg']
civil(*args)
end