Class: TheCity::UserProcessAnswerList
- Includes:
- Enumerable
- Defined in:
- lib/api/user_process_answer_list.rb
Instance Attribute Summary
Attributes inherited from ApiList
#current_page, #per_page, #total_entries, #total_pages
Instance Method Summary collapse
-
#[](index) ⇒ UserProcesses
Get the specified processes.
-
#each(&block) ⇒ Object
This method is needed for Enumerable.
-
#empty? ⇒ Boolean
Checks if the list is empty.
-
#initialize(options = {}) ⇒ UserProcessAnswerList
constructor
Constructor.
Methods inherited from ApiList
load, #next_page, #next_page!, #next_page?
Constructor Details
#initialize(options = {}) ⇒ UserProcessAnswerList
Constructor.
Options:
:user_id - The ID of the user to load the answers for the process. (required)
:process_id - The ID of the user's process to load the answers for. (required)
:page - The page number to get.
:reader - The Reader to use to load the data.
Examples:
UserProcessAnswerList.new({:user_id => 12345, :process_id => 23456})
UserProcessAnswerList.new({:user_id => 12345, :process_id => 23456, :page => 2})
23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/api/user_process_answer_list.rb', line 23 def initialize( = {}) @options = @options[:page] ||= 1 @options[:reader] = TheCity::UserProcessAnswerListReader.new(@options) if @options[:reader].nil? @json_data = @options[: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 |
Instance Method Details
#[](index) ⇒ UserProcesses
Get the specified processes.
41 42 43 |
# File 'lib/api/user_process_answer_list.rb', line 41 def [](index) UserProcessAnswer.new( @json_data['answers'][index] ) if @json_data['answers'][index] end |
#each(&block) ⇒ Object
This method is needed for Enumerable.
47 48 49 |
# File 'lib/api/user_process_answer_list.rb', line 47 def each &block @json_data['answers'].each{ |process| yield( UserProcessAnswer.new(process) )} end |
#empty? ⇒ Boolean
Checks if the list is empty.
57 58 59 |
# File 'lib/api/user_process_answer_list.rb', line 57 def empty? @json_data['answers'].empty? end |