github_client 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/lib/github_client.rb +8 -5
- data/lib/github_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7e4684bdc111aa960d5ece5b6a8398e4a24968869db266bb1270a91839159dc
|
4
|
+
data.tar.gz: 22e07b70c8faa0023dc2966891cdbab5522902711f732336d7523c7ead9dffab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ab46e2782ea0b88e79321e060797e1601589036b6ce7b7a56593886602371ab611fbf0205bbacf01a41d67e0fe63a73f0f0ee5d7f0f40fe1b047c23515c7739
|
7
|
+
data.tar.gz: 50cbe102f3972e1d726c7ebf7d24b677aca8ec21cb5cf9cb7c2244907c65ab0b5ba081f762c50c7df858b43cc49ef955f65930b6caa1f83f50e04dd3748c93d1
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
## [1.2.0] - 2019-02-03
|
8
|
+
### Added
|
9
|
+
- Require `uri` and `json` libraries.
|
10
|
+
|
11
|
+
## [1.1.0] - 2019-02-03
|
12
|
+
### Fixed
|
13
|
+
- Fix included module on `GithubClient`.
|
14
|
+
- Now we can do `GithubClient.new`.
|
15
|
+
|
7
16
|
## [1.0] - 2019-02-03
|
8
17
|
### Added
|
9
18
|
- Add `#get_user_repositories` method.
|
data/Gemfile.lock
CHANGED
data/lib/github_client.rb
CHANGED
@@ -1,10 +1,7 @@
|
|
1
1
|
require "github_client/version"
|
2
2
|
require "api_client_base"
|
3
|
-
require "
|
4
|
-
require "
|
5
|
-
require "github_client/requests/get_org_repositories_request"
|
6
|
-
require "github_client/responses/get_user_repositories_response"
|
7
|
-
require "github_client/responses/get_org_repositories_response"
|
3
|
+
require "uri"
|
4
|
+
require "json"
|
8
5
|
|
9
6
|
module GithubClient
|
10
7
|
include APIClientBase::Base
|
@@ -14,3 +11,9 @@ module GithubClient
|
|
14
11
|
has :access_token, classes: String
|
15
12
|
end
|
16
13
|
end
|
14
|
+
|
15
|
+
require "github_client/client"
|
16
|
+
require "github_client/requests/get_user_repositories_request"
|
17
|
+
require "github_client/requests/get_org_repositories_request"
|
18
|
+
require "github_client/responses/get_user_repositories_response"
|
19
|
+
require "github_client/responses/get_org_repositories_response"
|