omniauth-liblynx 1.3.7 → 1.3.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fcda8ca2296f18d0497eb088931784311b93c029a08fc328fac4345d4e9a97c7
4
- data.tar.gz: 1ae28af1ae1e93a2023f1ae001b501fd411a9562d498bfa853489405547afa94
3
+ metadata.gz: 490699bf813ed129d3533d49087ee610e3abc98c12d0752fc3e10714084e0eeb
4
+ data.tar.gz: 6f5c17357a3a98d064881b69cd4bf4bcdf61087210fb9a5450e3329506c52868
5
5
  SHA512:
6
- metadata.gz: 166db4837f4a471208657edda70e84caa17a1ccd0997a36a54cf7cc7712571d683ddcee04e3da1e0e7c4e265b61c9f4fe82a8c09f2b0cb662fbf9a62974ea0d1
7
- data.tar.gz: b3f8cc5fcc070c2b24f90e051ee7b631c0ebe78eef2bf9825e5fb46e08ca2e8019b4516024a7dbb8117684a790a15bfd7cec991ee55f6f012522b2603845c79b
6
+ metadata.gz: b368f5ce292d81620afb60b46200d1724d57362c2efdc3bd4d06752aa5afb06350a402c191f115592d88c156897055afd54c2ae23933d50247e8e043f8a06613
7
+ data.tar.gz: 850ad87c53cbecd34b2161e8701d69c56f12eb50f901b1555e3485bdab0444c3df1495597fd1a414e39d95faaba0c6f23a4e065cb70ba0ae807f3761b911b329
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  pkg/
2
+ .bundle/
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.3
2
+ TargetRubyVersion: 3.0
3
3
 
4
4
  Layout/EmptyLineAfterGuardClause:
5
5
  Enabled: false
@@ -19,5 +19,9 @@ Style/Documentation:
19
19
  Naming/MethodParameterName:
20
20
  Enabled: false
21
21
 
22
+ Naming/FileName:
23
+ Exclude:
24
+ - 'lib/omniauth-liblynx.rb'
25
+
22
26
  Metrics:
23
27
  Enabled: false
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/Gemfile.lock CHANGED
@@ -1,42 +1,48 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-liblynx (1.3.7)
4
+ omniauth-liblynx (1.3.8)
5
5
  omniauth (>= 1.9, < 3.0)
6
6
  omniauth-oauth2 (>= 1.4.0, < 2.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
+ anonymous_loader (0.1.3)
12
+ version_gem (~> 1.1, >= 1.1.14)
11
13
  ast (2.4.3)
14
+ auth-sanitizer (0.2.3)
15
+ version_gem (~> 1.1, >= 1.1.14)
12
16
  base64 (0.3.0)
13
- bigdecimal (4.1.1)
14
- faraday (2.14.1)
17
+ bigdecimal (4.1.2)
18
+ faraday (2.14.3)
15
19
  faraday-net_http (>= 2.0, < 3.5)
16
20
  json
17
21
  logger
18
- faraday-net_http (3.4.2)
22
+ faraday-net_http (3.4.4)
19
23
  net-http (~> 0.5)
20
24
  hashie (5.1.0)
21
25
  logger
22
- json (2.19.3)
23
- jwt (3.1.2)
26
+ json (2.21.1)
27
+ jwt (3.2.0)
24
28
  base64
25
- language_server-protocol (3.17.0.5)
29
+ language_server-protocol (3.17.0.6)
26
30
  lint_roller (1.1.0)
27
31
  logger (1.7.0)
28
- multi_xml (0.8.1)
32
+ multi_xml (0.9.1)
29
33
  bigdecimal (>= 3.1, < 5)
30
34
  net-http (0.9.1)
31
35
  uri (>= 0.11.1)
32
- oauth2 (2.0.18)
36
+ oauth2 (2.0.25)
37
+ anonymous_loader (~> 0.1, >= 0.1.3)
38
+ auth-sanitizer (~> 0.2, >= 0.2.3)
33
39
  faraday (>= 0.17.3, < 4.0)
34
40
  jwt (>= 1.0, < 4.0)
35
41
  logger (~> 1.2)
36
42
  multi_xml (~> 0.5)
37
43
  rack (>= 1.2, < 4)
38
- snaky_hash (~> 2.0, >= 2.0.3)
39
- version_gem (~> 1.1, >= 1.1.9)
44
+ snaky_hash (~> 2.0, >= 2.0.7)
45
+ version_gem (~> 1.1, >= 1.1.14)
40
46
  omniauth (2.1.4)
41
47
  hashie (>= 3.4.6)
42
48
  logger
@@ -45,7 +51,7 @@ GEM
45
51
  omniauth-oauth2 (1.9.0)
46
52
  oauth2 (>= 2.0.2, < 3)
47
53
  omniauth (~> 2.0)
48
- parallel (1.28.0)
54
+ parallel (2.1.0)
49
55
  parser (3.3.11.1)
50
56
  ast (~> 2.4.1)
51
57
  racc
@@ -57,31 +63,31 @@ GEM
57
63
  logger (>= 1.6.0)
58
64
  rack (>= 3.0.0, < 4)
59
65
  rainbow (3.1.1)
60
- rake (13.3.1)
66
+ rake (13.4.2)
61
67
  regexp_parser (2.12.0)
62
- rubocop (1.86.0)
68
+ rubocop (1.88.2)
63
69
  json (~> 2.3)
64
70
  language_server-protocol (~> 3.17.0.2)
65
71
  lint_roller (~> 1.1.0)
66
- parallel (~> 1.10)
72
+ parallel (>= 1.10)
67
73
  parser (>= 3.3.0.2)
68
74
  rainbow (>= 2.2.2, < 4.0)
69
75
  regexp_parser (>= 2.9.3, < 3.0)
70
76
  rubocop-ast (>= 1.49.0, < 2.0)
71
77
  ruby-progressbar (~> 1.7)
72
78
  unicode-display_width (>= 2.4.0, < 4.0)
73
- rubocop-ast (1.49.1)
79
+ rubocop-ast (1.50.0)
74
80
  parser (>= 3.3.7.2)
75
81
  prism (~> 1.7)
76
82
  ruby-progressbar (1.13.0)
77
- snaky_hash (2.0.3)
83
+ snaky_hash (2.0.7)
78
84
  hashie (>= 0.1.0, < 6)
79
- version_gem (>= 1.1.8, < 3)
85
+ version_gem (~> 1.1, >= 1.1.14)
80
86
  unicode-display_width (3.2.0)
81
87
  unicode-emoji (~> 4.1)
82
88
  unicode-emoji (4.2.0)
83
89
  uri (1.1.1)
84
- version_gem (1.1.9)
90
+ version_gem (1.1.14)
85
91
 
86
92
  PLATFORMS
87
93
  ruby
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_tasks'
2
4
 
3
5
  task default: [:build]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module LibLynx
5
- VERSION = '1.3.7'
5
+ VERSION = '1.3.8'
6
6
  end
7
7
  end
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.homepage = 'https://github.com/dsablic/omniauth-liblynx'
9
9
  gem.summary = 'OmniAuth strategy for LibLynx'
10
10
  gem.license = 'MIT'
11
- gem.required_ruby_version = '>= 2.6.0'
11
+ gem.required_ruby_version = '>= 3.0'
12
12
 
13
13
  gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
14
14
  gem.files = `git ls-files`.split("\n")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-liblynx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.7
4
+ version: 1.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Sablic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-04-08 00:00:00.000000000 Z
11
+ date: 2026-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -123,7 +123,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
123
123
  requirements:
124
124
  - - ">="
125
125
  - !ruby/object:Gem::Version
126
- version: 2.6.0
126
+ version: '3.0'
127
127
  required_rubygems_version: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="