Method: DateTime.json_create

Defined in:
lib/vendor/json_pure/lib/json/add/core.rb

.json_create(object) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
# File 'lib/vendor/json_pure/lib/json/add/core.rb', line 63

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