When you just want the loop through all the raw pull request and review data from GitHub (for exporting metrics f.ex).
Add this line to your application's Gemfile:
gem "hub_link"
Then you can do:
stream = HubLink::Stream.new("balvig/hub_link", since: 3.months.ago)
stream.in_batches do |batch|
batch.reviews # => [{ id: 54, reviewer: "balvig", approval: true, ... }]
batch.prs # => [{ id: 34, merge_time: 6400, ... }]
end
Hub Link will loop through the API one page at a time.
Bug reports and pull requests are welcome on GitHub at https://github.com/balvig/hub_link. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.