github_client 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59f479249e2d7593a8606ec94c5a573d3c9f2056babc7a5abfaf62343dea1428
4
- data.tar.gz: fc677cd13761a21a7492e7094b290eb88952ffe3f63737ef9c2a3e8ce8c52acd
3
+ metadata.gz: 728ffefdea353b4dbc6044a2b4909ea44531fac05997fc59871492e623cd7f3f
4
+ data.tar.gz: 00753dbeb765efe0575b199868dfde97bf822b7473a138aac40738208ef28514
5
5
  SHA512:
6
- metadata.gz: ff93eda3237fe939c9263ae2d254afd232f5a0160d4fa278e40ce47d54640d468ec40fdf1734d2854bbef2c5cd9c14179b648d0a93a1643080c93a5a911ef37a
7
- data.tar.gz: 5735732a7c4e8207d6c825957c2d246b3444507a4a7f72cd49d337bddc33ce134ff4b78e007b435dbf83e25f36e67a0ddc6c33f6306a409dbd0e98233dc182a3
6
+ metadata.gz: 44f74c9e4c74d80fcf190e60faa3573a7494d59e5342fff65f874ce66d8a4214a34aba9cb7032976e508faadc84e6245992febd52a53ba71784f2df34ded9d93
7
+ data.tar.gz: 869e2e001c40a226b43e868b78c04acee15c1c40ca2d8a20976e74423a92bc41e8a9e242dbca8ea3fbad1bb96bf6f86da73db03c9787219c37e7383f84cd9559
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github_client (0.1.0)
4
+ github_client (1.0.0)
5
5
  api_client_base
6
6
  typhoeus
7
7
 
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-ruby'
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-ruby
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.module
10
+ include APIClientBase::Base
11
11
 
12
12
  with_configuration do
13
13
  has :host, classes: String
@@ -1,3 +1,3 @@
1
1
  module GithubClient
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Chavez