github_client 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e8b59b107f99872a6f136b4b43808250fd315f6aa0bcbdcd5b63572c32b47f94
4
- data.tar.gz: 223ae2d78a2855a6918bb28964b5e8443746f24d212d7cdec90cafc72f9b9439
3
+ metadata.gz: ed9f519b04abb8d24e820aa1e62038d4b255d5f1a6c7356e8b8522b3a64df2b6
4
+ data.tar.gz: 04f3a7d8b51e7635f3a94f8a2e2803beeb1bced44cbb1ed8484191c20c49dd51
5
5
  SHA512:
6
- metadata.gz: 7feb24bacc61b5b9b1560a3694360e57d31cd5fa5660e3b93a64c92c278e44ffab626f361dfa0c9e939b3db59d60c20c5b96dbd95f15681fc73b3fc53766d984
7
- data.tar.gz: 355fa556d9c5d11d365d2048dc8b2bce98f4777e6987287f4f869a8f3dbd06d2f42998a3eeb8f57319656e20154e0a0b390f093ffeecf9b58d4bb9760f22208d
6
+ metadata.gz: 0ae57fec009eaaef1d60ee9a3d05b2d72fc3fce851eedcf61f4fb5468af4d09638155399f44b5e626860fb88a8a6fb3297a4c1eff185fc6977adec8af83bec49
7
+ data.tar.gz: 39e62fa7c821b6c641e09db2c29447de3bab6e7efb3fb18eebf04bf2194b7e2ccf3982f7df530b67170469c02b622718f462d87e695f43babb61975625a0aaa6
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ 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
+ ## [2.0.1] - 2019-02-09
8
+ ### Changed
9
+ - Organize per functions. Add repo endpoints under the `repo` folder.
10
+
7
11
  ## [2.0.0] - 2019-02-09
8
12
  ### Added
9
13
  - `#get_repositories_for_user` method that returns the public repositories --
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github_client (1.2.0)
4
+ github_client (2.0.0)
5
5
  api_client_base
6
6
  typhoeus
7
7
 
data/lib/github_client.rb CHANGED
@@ -13,9 +13,9 @@ module GithubClient
13
13
  end
14
14
 
15
15
  require "github_client/client"
16
- require "github_client/requests/get_repositories_request"
17
- require "github_client/requests/get_repositories_for_user_request"
18
- require "github_client/requests/get_org_repositories_request"
19
- require "github_client/responses/get_repositories_response"
20
- require "github_client/responses/get_repositories_for_user_response"
21
- require "github_client/responses/get_org_repositories_response"
16
+ require "github_client/requests/repos/get_repositories_request"
17
+ require "github_client/requests/repos/get_repositories_for_user_request"
18
+ require "github_client/requests/repos/get_org_repositories_request"
19
+ require "github_client/responses/repos/get_repositories_response"
20
+ require "github_client/responses/repos/get_repositories_for_user_response"
21
+ require "github_client/responses/repos/get_org_repositories_response"
@@ -1,3 +1,3 @@
1
1
  module GithubClient
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
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: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Chavez
@@ -144,12 +144,12 @@ files:
144
144
  - github_client.gemspec
145
145
  - lib/github_client.rb
146
146
  - lib/github_client/client.rb
147
- - lib/github_client/requests/get_org_repositories_request.rb
148
- - lib/github_client/requests/get_repositories_for_user_request.rb
149
- - lib/github_client/requests/get_repositories_request.rb
150
- - lib/github_client/responses/get_org_repositories_response.rb
151
- - lib/github_client/responses/get_repositories_for_user_response.rb
152
- - lib/github_client/responses/get_repositories_response.rb
147
+ - lib/github_client/requests/repos/get_org_repositories_request.rb
148
+ - lib/github_client/requests/repos/get_repositories_for_user_request.rb
149
+ - lib/github_client/requests/repos/get_repositories_request.rb
150
+ - lib/github_client/responses/repos/get_org_repositories_response.rb
151
+ - lib/github_client/responses/repos/get_repositories_for_user_response.rb
152
+ - lib/github_client/responses/repos/get_repositories_response.rb
153
153
  - lib/github_client/version.rb
154
154
  homepage: https://github.com/MarkFChavez/github_client-ruby
155
155
  licenses: