json_create(object)
public
Deserializes JSON string by converting Julian year y, month m, day d and Day of Calendar Reform
sg to Date.
# File ext/json/lib/json/add/date.rb, line 11
def self.json_create(object)
civil(*object.values_at('y', 'm', 'd', 'sg'))
end