Sha256: 295e60ef044470e034794f07f94b8e56bb91476a4ac2005e9264d4555a83f7b7
Contents?: true
Size: 342 Bytes
Versions: 16
Compression:
Stored size: 342 Bytes
Contents
module HAR module Serializable def inspect '#<%s:0x%s>' % [self.class.name, self.hash.to_s(16)] end def ==(other) other.kind_of?(self.class) && as_json == other.as_json end alias_method :eql?, :== def as_json @data end def to_json(*args) as_json.to_json(*args) end end end
Version data entries
16 entries across 16 versions & 1 rubygems