Sha256: b31f75b76b531cb3330cc40573ae2708bb9171f5f595dda7334af06a5ce84b5b

Contents?: true

Size: 1016 Bytes

Versions: 281

Compression:

Stored size: 1016 Bytes

Contents

#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Time

  # Deserializes JSON string by converting time since epoch to Time
  def self.json_create(object)
    if usec = object.delete('u') # used to be tv_usec -> tv_nsec
      object['n'] = usec * 1000
    end
    if method_defined?(:tv_nsec)
      at(object['s'], Rational(object['n'], 1000))
    else
      at(object['s'], object['n'] / 1000)
    end
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    nanoseconds = [ tv_usec * 1000 ]
    respond_to?(:tv_nsec) and nanoseconds << tv_nsec
    nanoseconds = nanoseconds.max
    {
      JSON.create_id => self.class.name,
      's'            => tv_sec,
      'n'            => nanoseconds,
    }
  end

  # Stores class name (Time) with number of seconds since epoch and number of
  # microseconds for Time as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end

Version data entries

281 entries across 267 versions & 31 rubygems

Version Path
direct7-0.0.11 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb
json_pure-2.7.0 lib/json/add/time.rb
json-2.7.0-java lib/json/add/time.rb
json-2.7.0 lib/json/add/time.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/json-2.6.2/lib/json/add/time.rb
cloudsmith-api-2.0.7 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/json-2.6.2/lib/json/add/time.rb
cloudsmith-api-2.0.6 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
cloudsmith-api-2.0.5 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
cloudsmith-api-2.0.4 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
cloudsmith-api-2.0.3 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
cloudsmith-api-2.0.2 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/json-2.6.3/lib/json/add/time.rb
call_your_name-0.1.0 vendor/bundle/ruby/3.1.0/gems/json-2.6.3/lib/json/add/time.rb
postfinancecheckout-ruby-sdk-3.3.0 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb
wallee-ruby-sdk-3.3.0 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/time.rb
cloudsmith-api-2.0.1 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb
cloudsmith-api-2.0.0 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/time.rb