Skip to content

Commit c6ea1a9

Browse files
committed
➕ logger
- restrict minitest to < 6
1 parent 9c87bb5 commit c6ea1a9

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 2.7.8
1+
ruby 3.3.5

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Fixed
1111
### Removed
1212

13+
## 3.0.3 - 2024-09-24
14+
### Fixed
15+
- Add logger gem for Ruby 3.5 compatibility
16+
- Restrict minitest to < 6, because first we must use assert_nil if expecting nil
17+
1318
## 3.0.2 - 2024-09-24
1419
COVERAGE: 91.72% -- 3522/3840 lines in 49 files
1520
BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 49 files

Gemfile.lock

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ PATH
22
remote: .
33
specs:
44
ruby-openid2 (3.0.2)
5+
logger (~> 1.6, >= 1.6.1)
56
net-http (~> 0.4, >= 0.4.1)
67
rexml (~> 3.3, >= 3.3.7)
78
version_gem (~> 1.1, >= 1.1.4)
@@ -28,6 +29,7 @@ GEM
2829
version_gem (~> 1.1, >= 1.1.4)
2930
language_server-protocol (3.17.0.3)
3031
lint_roller (1.1.0)
32+
logger (1.6.1)
3133
minitest (5.25.1)
3234
net-http (0.4.1)
3335
uri
@@ -42,13 +44,13 @@ GEM
4244
regexp_parser (2.9.2)
4345
rexml (3.3.7)
4446
rspec-block_is_expected (1.0.6)
45-
rubocop (1.64.1)
47+
rubocop (1.65.1)
4648
json (~> 2.3)
4749
language_server-protocol (>= 3.17.0)
4850
parallel (~> 1.10)
4951
parser (>= 3.3.0.2)
5052
rainbow (>= 2.2.2, < 4.0)
51-
regexp_parser (>= 1.8, < 3.0)
53+
regexp_parser (>= 2.4, < 3.0)
5254
rexml (>= 3.2.5, < 4.0)
5355
rubocop-ast (>= 1.31.1, < 2.0)
5456
ruby-progressbar (~> 1.7)
@@ -106,10 +108,10 @@ GEM
106108
simplecov-rcov (0.3.7)
107109
simplecov (>= 0.4.1)
108110
simplecov_json_formatter (0.1.4)
109-
standard (1.37.0)
111+
standard (1.40.0)
110112
language_server-protocol (~> 3.17.0.2)
111113
lint_roller (~> 1.0)
112-
rubocop (~> 1.64.0)
114+
rubocop (~> 1.65.0)
113115
standard-custom (~> 1.0.0)
114116
standard-performance (~> 1.4)
115117
standard-custom (1.0.2)
@@ -139,11 +141,12 @@ GEM
139141

140142
PLATFORMS
141143
arm64-darwin-22
144+
arm64-darwin-23
142145

143146
DEPENDENCIES
144147
byebug (>= 11)
145148
kettle-soup-cover (~> 1.0, >= 1.0.2)
146-
minitest (>= 5)
149+
minitest (>= 5, < 6)
147150
rake (>= 13)
148151
rubocop-lts (~> 18.2, >= 18.2.1)
149152
rubocop-minitest (~> 0.36)

ruby-openid2.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ Gem::Specification.new do |spec|
4343
spec.metadata["funding_uri"] = "https://liberapay.com/pboling"
4444
spec.metadata["rubygems_mfa_required"] = "true"
4545

46+
spec.add_dependency("logger", "~> 1.6", ">= 1.6.1")
4647
spec.add_dependency("net-http", "~> 0.4", ">= 0.4.1")
4748
spec.add_dependency("rexml", "~> 3.3", ">= 3.3.7")
4849
spec.add_dependency("version_gem", "~> 1.1", ">= 1.1.4")
4950

50-
spec.add_development_dependency("minitest", ">= 5")
51+
spec.add_development_dependency("minitest", ">= 5", "< 6") # Use assert_nil if expecting nil
5152
spec.add_development_dependency("rake", ">= 13")
5253
spec.add_development_dependency("webrick", "~> 1.8")
5354

0 commit comments

Comments
 (0)