Sha256: 6b755cc3cce9fc3e47775a8ff88b4cde8f25e00e322432d856794c5f8024f267
Contents?: true
Size: 350 Bytes
Versions: 46
Compression:
Stored size: 350 Bytes
Contents
module Access class Link def self.process_batch(chunk) chunk.map { |link| new(link) } end def initialize(values) self.class.class_eval {attr_reader *values.keys } values.each do |attribute_name, attribute_value| self.instance_variable_set("@#{attribute_name}", attribute_value) end end end end
Version data entries
46 entries across 46 versions & 1 rubygems