class Harvesting::Models::Projects
Public Class Methods
new(attrs, query_opts = {}, opts = {})
click to toggle source
Calls superclass method
Harvesting::Models::HarvestRecordCollection::new
# File lib/harvesting/models/projects.rb, line 5 def initialize(attrs, query_opts = {}, opts = {}) super(attrs.reject {|k,v| k == "projects" }, query_opts, opts) @entries = attrs["projects"].map do |entry| Project.new(entry, harvest_client: opts[:harvest_client]) end end
Public Instance Methods
fetch_next_page()
click to toggle source
# File lib/harvesting/models/projects.rb, line 12 def fetch_next_page @entries += harvest_client.projects(next_page_query_opts).entries @attributes['page'] = page + 1 end