lib/harvesting/models/tasks.rb in harvesting-0.3.0 vs lib/harvesting/models/tasks.rb in harvesting-0.4.0

- old
+ new

@@ -3,10 +3,10 @@ class Tasks < HarvestRecordCollection def initialize(attrs, query_opts = {}, opts = {}) super(attrs.reject {|k,v| k == "tasks" }, query_opts, opts) @entries = attrs["tasks"].map do |entry| - Task.new(entry, client: opts[:client]) + Task.new(entry, harvest_client: opts[:harvest_client]) end end def fetch_next_page @entries += harvest_client.tasks(next_page_query_opts).entries