github-authentication 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/github-authentication.rb +3 -0
- data/lib/github_authentication/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee6d5fd50e707bbd97ef18ff71385b393ba8758c7964bec16190a11e97ed0eb8
|
4
|
+
data.tar.gz: c0ba6585986836aeeea911fdb9ca41022529adf9c7999fafd81e3feb97c293ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 832d1d90112fa7fa5995bf32147d00f93d17665449b73aa05cc813b2845dbc0c3d46487ba0da6cee5f507b7133efaf9cf3acad1a288f7fbe7a69a95acda1aba2
|
7
|
+
data.tar.gz: a0e94e1feca2a9264c46bdb5eab81b3eb7e68213b01ebd98654a21151934f340bfe0e46537d5543221e541f3e1b1f70228c425f9118898fe49ceb5e18fe744ad
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -23,7 +23,7 @@ Or install it yourself as:
|
|
23
23
|
## Usage
|
24
24
|
|
25
25
|
```ruby
|
26
|
-
require '
|
26
|
+
require 'github-authentication'
|
27
27
|
|
28
28
|
cache = GithubAuthentication::Cache.new(storage: GithubAuthentication::ObjectCache.new)
|
29
29
|
generator = GithubAuthentication::Generator::App.new(pem: ENV['GITHUB_PEM'],
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frederik Dudzik
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -174,6 +174,7 @@ files:
|
|
174
174
|
- docs/github_credential_helper.md
|
175
175
|
- exe/git-credential-github-app
|
176
176
|
- github-authentication.gemspec
|
177
|
+
- lib/github-authentication.rb
|
177
178
|
- lib/github_authentication.rb
|
178
179
|
- lib/github_authentication/cache.rb
|
179
180
|
- lib/github_authentication/generator.rb
|