Sha256: 48b3c3d442903eba73d0ef8a964a1159e5c8c20f6045fc12963e7b682ad8409a
Contents?: true
Size: 350 Bytes
Versions: 47
Compression:
Stored size: 350 Bytes
Contents
module JsonApiClient class Implementation attr_reader :version, :meta def initialize(data) # If the version member is not present, clients should assume the server implements at least version 1.0 of the specification. @version = data.fetch("version", "1.0") @meta = MetaData.new(data.fetch("meta", {})) end end end
Version data entries
47 entries across 47 versions & 2 rubygems