Sha256: cebb85584c67708bf2a18de0410801e5a8202680b03eadbbb0e0069dd3fae4d0
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
# Hub Link When you just want the loop through all the raw pull request and review data from GitHub (for exporting metrics f.ex). ## Usage Add this line to your application's Gemfile: ```ruby gem "hub_link" ``` Then you can do: ```ruby stream = HubLink::Stream.new("balvig/hub_link", start_date: 3.months.ago) stream.in_batches do |batch| batch.review_requests # => [{ digest: "a45bfa...", reviewer: "balvig", ... }] batch.reviews # => [{ id: 54, reviewer: "balvig", approval: true, ... }] batch.prs # => [{ id: 34, merge_time: 6400, ... }] end ``` Hub Link will loop through the API in batches of 7 days at a time from the start date. ## Contributing 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](http://contributor-covenant.org) code of conduct. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hub_link-0.12.0 | README.md |