Sha256: a6d43958ad827787c8ba8b3dc7fff81f367a3002b8e61197188bbb22a9aad306

Contents?: true

Size: 559 Bytes

Versions: 5

Compression:

Stored size: 559 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

5 entries across 5 versions & 1 rubygems

Version Path
the-city-admin-0.1.4 lib/readers/checkin_reader.rb
the-city-admin-0.1.3 lib/readers/checkin_reader.rb
the-city-admin-0.1.2 lib/readers/checkin_reader.rb
the-city-admin-0.1.1 lib/readers/checkin_reader.rb
the-city-admin-0.1.0 lib/readers/checkin_reader.rb