Sha256: ac07903cfb94f46497305d8bf9ccc87684114777753ff21755623b0954a67953

Contents?: true

Size: 1.52 KB

Versions: 14

Compression:

Stored size: 1.52 KB

Contents

module TheCity

  class GroupCheckinList 

    include Enumerable

    attr_reader :total_entries, :total_pages, :per_page, :current_page

    # Constructor.
    #
    # @param options A hash of options for loading the list.
    # 
    # Options:
    #   :group_id - The ID of the group to load the addresses for. (required)
    #   :page - The page number to get.
    #   :reader - The Reader to use to load the data.
    #
    #
    # Examples:
    #   GroupCheckinList.new({:group_id => 12345})
    #
    #   GroupCheckinList.new({:group_id => 12345, :page => 2})
    #    
    def initialize(options = {}) 
      reader = options[:reader] || TheCity::GroupCheckinListReader.new(options)    
      @json_data = reader.load_feed

      @total_entries = @json_data['total_entries']
      @total_pages = @json_data['total_pages']
      @per_page = @json_data['per_page']
      @current_page = @json_data['current_page']      
    end
    
    
    # Get the specified note.
    #
    # @param index The index of the note to get.
    #
    # @return [GroupCheckin]
    def [](index)
      GroupCheckin.new( @json_data['checkins'][index] ) if @json_data['checkins'][index]
    end


    # This method is needed for Enumerable.
    def each &block
      @json_data['checkins'].each{ |checkin| yield( GroupCheckin.new(checkin) )}
    end    
  
  
    # Alias the count method
    alias :size :count

    # Checks if the list is empty.
    #
    # @return True on empty, false otherwise.
    def empty?
      @json_data['checkins'].empty?
    end

  end
  
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
the-city-admin-0.5.2 lib/api/group_checkin_list.rb
the-city-admin-0.5.1 lib/api/group_checkin_list.rb
the-city-admin-0.5.0 lib/api/group_checkin_list.rb
the-city-admin-0.4.0 lib/api/group_checkin_list.rb
the-city-admin-0.3.1 lib/api/group_checkin_list.rb
the-city-admin-0.3.0 lib/api/group_checkin_list.rb
the-city-admin-0.2.1 lib/api/group_checkin_list.rb
the-city-admin-0.2.0 lib/api/group_checkin_list.rb
the-city-admin-0.1.5 lib/api/group_checkin_list.rb
the-city-admin-0.1.4 lib/api/group_checkin_list.rb
the-city-admin-0.1.3 lib/api/group_checkin_list.rb
the-city-admin-0.1.2 lib/api/group_checkin_list.rb
the-city-admin-0.1.1 lib/api/group_checkin_list.rb
the-city-admin-0.1.0 lib/api/group_checkin_list.rb