Sha256: b733645da46a8b6c7c8a4183fdcec280fdb215cb23d462131bc3f5190f3b343a
Contents?: true
Size: 618 Bytes
Versions: 22
Compression:
Stored size: 618 Bytes
Contents
module Access class Geolocation def self.search(options = {}) Access::Api.new.geolocation_search options end def self.find(options = {}) Access::Api.new.geolocation_find options end def self.process_batch(chunk) chunk.map { |geolocation| new(geolocation) } 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 @geolocation = Geolocation.new(@geolocation) if @geolocation end end end
Version data entries
22 entries across 22 versions & 1 rubygems