Sha256: c83e8a1f76060e8b41b1323de752b65672bb15818d5135b7ed1418242c8e63eb
Contents?: true
Size: 356 Bytes
Versions: 7
Compression:
Stored size: 356 Bytes
Contents
module RETS4R class Client # Represents a row of data. Nothing more than a glorfied Hash with a custom constructor and a # type attribute. class Data < ::Hash attr_accessor :type def initialize(type = false) super self.type = type end end end end
Version data entries
7 entries across 7 versions & 3 rubygems