glogin 0.16.4 → 0.17.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.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glogin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.4
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-07-15 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: base58
@@ -24,6 +23,20 @@ dependencies:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
25
  version: '0.2'
26
+ - !ruby/object:Gem::Dependency
27
+ name: base64
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0.2'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0.2'
27
40
  - !ruby/object:Gem::Dependency
28
41
  name: openssl
29
42
  requirement: !ruby/object:Gem::Requirement
@@ -43,8 +56,8 @@ email: yegor256@gmail.com
43
56
  executables: []
44
57
  extensions: []
45
58
  extra_rdoc_files:
46
- - README.md
47
59
  - LICENSE.txt
60
+ - README.md
48
61
  files:
49
62
  - ".0pdd.yml"
50
63
  - ".gitattributes"
@@ -54,15 +67,20 @@ files:
54
67
  - ".github/workflows/markdown-lint.yml"
55
68
  - ".github/workflows/pdd.yml"
56
69
  - ".github/workflows/rake.yml"
70
+ - ".github/workflows/reuse.yml"
71
+ - ".github/workflows/typos.yml"
57
72
  - ".github/workflows/xcop.yml"
73
+ - ".github/workflows/yamllint.yml"
58
74
  - ".gitignore"
59
75
  - ".pdd"
60
76
  - ".rubocop.yml"
61
77
  - ".rultor.yml"
62
- - ".simplecov"
63
78
  - Gemfile
79
+ - Gemfile.lock
64
80
  - LICENSE.txt
81
+ - LICENSES/MIT.txt
65
82
  - README.md
83
+ - REUSE.toml
66
84
  - Rakefile
67
85
  - glogin.gemspec
68
86
  - lib/glogin.rb
@@ -82,7 +100,6 @@ licenses:
82
100
  - MIT
83
101
  metadata:
84
102
  rubygems_mfa_required: 'true'
85
- post_install_message:
86
103
  rdoc_options:
87
104
  - "--charset=UTF-8"
88
105
  require_paths:
@@ -98,8 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
115
  - !ruby/object:Gem::Version
99
116
  version: '0'
100
117
  requirements: []
101
- rubygems_version: 3.4.10
102
- signing_key:
118
+ rubygems_version: 3.6.7
103
119
  specification_version: 4
104
120
  summary: Login/logout via GitHub OAuth for your web app
105
121
  test_files: []
data/.simplecov DELETED
@@ -1,41 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- #
4
- # Copyright (c) 2017-2024 Yegor Bugayenko
5
- #
6
- # Permission is hereby granted, free of charge, to any person obtaining a copy
7
- # of this software and associated documentation files (the 'Software'), to deal
8
- # in the Software without restriction, including without limitation the rights
9
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- # copies of the Software, and to permit persons to whom the Software is
11
- # furnished to do so, subject to the following conditions:
12
- #
13
- # The above copyright notice and this permission notice shall be included in all
14
- # copies or substantial portions of the Software.
15
- #
16
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
19
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- # SOFTWARE.
23
-
24
- if Gem.win_platform?
25
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
26
- SimpleCov::Formatter::HTMLFormatter
27
- ]
28
- SimpleCov.start do
29
- add_filter '/test/'
30
- add_filter '/features/'
31
- end
32
- else
33
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
34
- [SimpleCov::Formatter::HTMLFormatter]
35
- )
36
- SimpleCov.start do
37
- add_filter '/test/'
38
- add_filter '/features/'
39
- minimum_coverage 20
40
- end
41
- end