github-lister-core 0.1.2 → 0.1.3
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 +4 -4
- data/.rubocop.yml +3 -0
- data/CHANGELOG.md +7 -1
- data/VERSION.txt +1 -1
- data/lib/github-lister-core/users.rb +9 -1
- data/lib/github-lister-core/version.rb +1 -1
- data/lib/github-lister-core/wrapper.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69e0e8f5f349a698eb1b99c945f668a1a938f8a4c38ec64aff83b6dcdee8712c
|
|
4
|
+
data.tar.gz: 69892b6cad7a41268d2623e38e7855cd98f27f8c32e21b8279b271066e5ab37b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bba4f41728ddf17d22a1c12725b6174d268f1f59158920bf2d4ce6ef60bf4864a6d0063f627345b1ee574c41f65bf11dce2cf807ee66ff122211464b11cb1a6
|
|
7
|
+
data.tar.gz: 177be0a23e51e378ae0a153c14c2047f1b167a833527b1449c5fe317b644d78da47919b4b0b4b20a2182640585caa70859e8300357f176cb2f0aaf7d9ff757e0
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
|
|
6
6
|
This changelog was automatically generated using [Caretaker](https://github.com/DevelopersToolbox/caretaker) by [Wolf Software](https://github.com/WolfSoftware)
|
|
7
7
|
|
|
8
|
+
### [v0.1.3](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.2...v0.1.3)
|
|
9
|
+
|
|
10
|
+
> Released on March, 12th 2021
|
|
11
|
+
|
|
12
|
+
- Added a begin->rescue->end to handle incorrect or expired PAT codes when looking up a username [`[head]`](https://github.com/DevelopersToolbox/github-lister-core/commit/)
|
|
13
|
+
|
|
8
14
|
### [v0.1.2](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.1...v0.1.2)
|
|
9
15
|
|
|
10
16
|
> Released on March, 10th 2021
|
|
11
17
|
|
|
12
|
-
- Fixed error where additional information wasn't being decoded from sawyer::resource and returned as JSON [`[
|
|
18
|
+
- Fixed error where additional information wasn't being decoded from sawyer::resource and returned as JSON [`[5b77168]`](https://github.com/DevelopersToolbox/github-lister-core/commit/5b7716876aabd35b93f55bdc85b3145f9536044c)
|
|
13
19
|
|
|
14
20
|
### [v0.1.1](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.0...v0.1.1)
|
|
15
21
|
|
data/VERSION.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
|
@@ -26,12 +26,20 @@ class GithubListerCore
|
|
|
26
26
|
user_list
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
+
def get_authed_username(client)
|
|
30
|
+
begin
|
|
31
|
+
client.user if client.user_authenticated?
|
|
32
|
+
rescue Octokit::Unauthorized => _exception
|
|
33
|
+
raise InvalidTokenError.new
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
|
29
37
|
#
|
|
30
38
|
# Users can be a string (comma separated) or an array nothing else
|
|
31
39
|
#
|
|
32
40
|
def get_user_list(client, options)
|
|
33
41
|
user_list = get_option(options, [:user, :username])
|
|
34
|
-
authed = client
|
|
42
|
+
authed = get_authed_username(client)
|
|
35
43
|
|
|
36
44
|
return convert_to_array(authed) unless user_list
|
|
37
45
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github-lister-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Gurney aka Wolf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|