summaryrefslogtreecommitdiff
path: root/lib/github/client.rb
Commit message (Collapse)AuthorAgeFilesLines
* Replace old GH importer with the parallel importergithub-importer-refactorYorick Peterse2017-11-071-54/+0
|
* Retrieve PR comments only when we know there are anyRémy Coutable2017-09-261-1/+2
| | | | | | | | | | | | The Pull Request resource doesn't include the `comments` field, while the Issue resource does. And since we're looping through all issues anyway, we can freely check if the issue is a PR and has comments and in this case only fetch comments for it. That means if you have 1000 PRs but only 200 with comments, you will do 200 API requests instead of 1000. :notbad: Signed-off-by: Rémy Coutable <remy@rymai.me>
* Allow users to disable SSL verification if not connecting to github.comDouglas Barbosa Alexandre2017-08-071-4/+15
|
* Extrac common timeout to a constant on Github::ClientDouglas Barbosa Alexandre2017-08-071-2/+4
|
* Fix small typoe on Github::Client#root_endpointDouglas Barbosa Alexandre2017-08-071-1/+1
|
* Move GitHub root endpoint methods to Github::ClientDouglas Barbosa Alexandre2017-08-071-1/+18
|
* Set timeout options to the Github::ClientDouglas Barbosa Alexandre2017-04-241-0/+2
|
* Refactoring Github::RateLimitDouglas Barbosa Alexandre2017-04-241-3/+5
|
* Pass a options hash to Github::ClientDouglas Barbosa Alexandre2017-04-241-3/+3
|
* Remove sensitive informationDouglas Barbosa Alexandre2017-04-241-1/+1
|
* Refactoring Github responseDouglas Barbosa Alexandre2017-04-241-3/+2
|
* Refactoring client to not parse response body automaticallyDouglas Barbosa Alexandre2017-04-241-4/+3
|
* Add basic client for the GitHub APIDouglas Barbosa Alexandre2017-04-241-0/+21