Sha256: 1671a2c5b96a16dbc7cddce9c2cab253dd25df96236cb0f7d3c240ef0c7afabc
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.prs # => [{ id: 34, merge_time: 6400, ... }] batch.reviews # => [{ id: 54, reviewer: "balvig", approval: true, ... }] batch.review_requests # => [{ digest: "a45bfa...", reviewer: "balvig", ... }] 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.11.0 | README.md |