Sha256: 65853026c1365043d5dab810c66b22a7448579f7e54ca057ea1203a9eb1dba4e
Contents?: true
Size: 184 Bytes
Versions: 14
Compression:
Stored size: 184 Bytes
Contents
module Access class Geolocation attr_accessor :lat, :lon def initialize(geolocation = {}) @lat = geolocation['lat'] @lon = geolocation['lon'] end end end
Version data entries
14 entries across 14 versions & 1 rubygems