Sha256: 9e34186b60a0a9c2b2ab883a879872c3e0f5b8e967d02299a2310523ffc5ca4e
Contents?: true
Size: 560 Bytes
Versions: 21
Compression:
Stored size: 560 Bytes
Contents
module TheCity class CheckinReader < ApiReader # Constructor. # # @param checkin_id The ID of the checkin to load. # @param options (optional) Options for including more information. # @param [CacheAdapter] cacher (optional) The cacher to be used to cache data. def initialize(checkin_id, options = {}, cacher = nil) #@class_key = "checkin_#{tag_id}" @url_data_path = "/checkins/#{tag_id}" # The object to store and load the cache. @cacher = cacher unless cacher.nil? end end end
Version data entries
21 entries across 21 versions & 1 rubygems