github_client 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/github_client.rb +1 -1
- 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: 728ffefdea353b4dbc6044a2b4909ea44531fac05997fc59871492e623cd7f3f
|
4
|
+
data.tar.gz: 00753dbeb765efe0575b199868dfde97bf822b7473a138aac40738208ef28514
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44f74c9e4c74d80fcf190e60faa3573a7494d59e5342fff65f874ce66d8a4214a34aba9cb7032976e508faadc84e6245992febd52a53ba71784f2df34ded9d93
|
7
|
+
data.tar.gz: 869e2e001c40a226b43e868b78c04acee15c1c40ca2d8a20976e74423a92bc41e8a9e242dbca8ea3fbad1bb96bf6f86da73db03c9787219c37e7383f84cd9559
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Ruby wrapper for GitHub API.
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
9
|
```ruby
|
10
|
-
gem 'github_client
|
10
|
+
gem 'github_client'
|
11
11
|
```
|
12
12
|
|
13
13
|
And then execute:
|
@@ -16,7 +16,7 @@ And then execute:
|
|
16
16
|
|
17
17
|
Or install it yourself as:
|
18
18
|
|
19
|
-
$ gem install github_client
|
19
|
+
$ gem install github_client
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
data/lib/github_client.rb
CHANGED
@@ -7,7 +7,7 @@ require "github_client/responses/get_user_repositories_response"
|
|
7
7
|
require "github_client/responses/get_org_repositories_response"
|
8
8
|
|
9
9
|
module GithubClient
|
10
|
-
include APIClientBase::Base
|
10
|
+
include APIClientBase::Base
|
11
11
|
|
12
12
|
with_configuration do
|
13
13
|
has :host, classes: String
|