Sha256: 77ed0bf4dc78f5b26a04e511ec7216eff3d9525e57afa888e5c0e9c8ceb5b92e

Contents?: true

Size: 945 Bytes

Versions: 99

Compression:

Stored size: 945 Bytes

Contents

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

# Time serialization/deserialization
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 instance_methods.include?(: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(*)
    {
      JSON.create_id => self.class.name,
      's'            => tv_sec,
      'n'            => respond_to?(:tv_nsec) ? tv_nsec : tv_usec * 1000
    }
  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

99 entries across 88 versions & 14 rubygems

Version Path
json_pure-1.6.8 lib/json/add/time.rb
json-1.6.8 lib/json/add/time.rb
json-1.6.8-java lib/json/add/time.rb
json-maglev--1.7.1 lib/json/add/time.rb
json-maglev--1.7.0 lib/json/add/time.rb
json-maglev--1.6.7 lib/json/add/time.rb
json-maglev--1.6.5 lib/json/add/time.rb
json-maglev--1.6.4 lib/json/add/time.rb
challah-0.6.2 vendor/bundle/gems/json-1.6.5/lib/json/add/time.rb
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
sunrise-cms-0.3.0 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
rails-uploader-0.0.4 vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
challah-0.6.1 vendor/bundle/gems/json-1.6.5/lib/json/add/time.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
rails-uploader-0.0.1 vendor/bundle/ruby/1.9.1/gems/json-1.7.1/lib/json/add/time.rb
resque-pool-0.3.0 vendor/bundle/ruby/1.8/gems/json-1.6.6/lib/json/add/time.rb
resque-pool-0.3.0 vendor/bundle/ruby/1.8/gems/json-1.6.5/lib/json/add/time.rb
challah-0.6.0 vendor/bundle/gems/json-1.6.5/lib/json/add/time.rb