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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60a26b87df203d0cad754620484922850747654443f26cc73ec60660f7b414f5
4
- data.tar.gz: 959c06de8b2f7e4c7647baf651021c8c59071f655815cdb79b5958dd437e1628
3
+ metadata.gz: ee6d5fd50e707bbd97ef18ff71385b393ba8758c7964bec16190a11e97ed0eb8
4
+ data.tar.gz: c0ba6585986836aeeea911fdb9ca41022529adf9c7999fafd81e3feb97c293ac
5
5
  SHA512:
6
- metadata.gz: 60cbe032c88f1b003524acbe8f2ff55ac2d96b1b2605d646e25165253fdfdd91f6e218a4c8ecd064ad0e9f7818a6dccdfa95c7752bc4db7b48294e6ca995c3c4
7
- data.tar.gz: ca10a2668358b6c061e0d786aa8a5d637ca551ae5d65bf1640edce9064c939f71c391ae49fbba5f10fe46230c18b5f950de5c0a98b7b8a342bfff80714d80aa4
6
+ metadata.gz: 832d1d90112fa7fa5995bf32147d00f93d17665449b73aa05cc813b2845dbc0c3d46487ba0da6cee5f507b7133efaf9cf3acad1a288f7fbe7a69a95acda1aba2
7
+ data.tar.gz: a0e94e1feca2a9264c46bdb5eab81b3eb7e68213b01ebd98654a21151934f340bfe0e46537d5543221e541f3e1b1f70228c425f9118898fe49ceb5e18fe744ad
data/.rubocop.yml CHANGED
@@ -18,3 +18,7 @@ Style/MethodCallWithArgsParentheses:
18
18
  - refute_nil
19
19
  - assert_kind_of
20
20
  - refute_kind_of
21
+
22
+ Naming/FileName:
23
+ Exclude:
24
+ - lib/github-authentication.rb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github-authentication (1.0.0)
4
+ github-authentication (1.0.1)
5
5
  jwt (~> 2.2)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -23,7 +23,7 @@ Or install it yourself as:
23
23
  ## Usage
24
24
 
25
25
  ```ruby
26
- require 'github_authentication'
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'],
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "github_authentication"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GithubAuthentication
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
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.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-04 00:00:00.000000000 Z
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