Skip to content

Commit

Permalink
➕ logger
Browse files Browse the repository at this point in the history
- restrict minitest to < 6
  • Loading branch information
pboling committed Sep 24, 2024
1 parent 9c87bb5 commit c6ea1a9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 2.7.8
ruby 3.3.5
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Removed

## 3.0.3 - 2024-09-24
### Fixed
- Add logger gem for Ruby 3.5 compatibility
- Restrict minitest to < 6, because first we must use assert_nil if expecting nil

## 3.0.2 - 2024-09-24
COVERAGE: 91.72% -- 3522/3840 lines in 49 files
BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 49 files
Expand Down
13 changes: 8 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ PATH
remote: .
specs:
ruby-openid2 (3.0.2)
logger (~> 1.6, >= 1.6.1)
net-http (~> 0.4, >= 0.4.1)
rexml (~> 3.3, >= 3.3.7)
version_gem (~> 1.1, >= 1.1.4)
Expand All @@ -28,6 +29,7 @@ GEM
version_gem (~> 1.1, >= 1.1.4)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
logger (1.6.1)
minitest (5.25.1)
net-http (0.4.1)
uri
Expand All @@ -42,13 +44,13 @@ GEM
regexp_parser (2.9.2)
rexml (3.3.7)
rspec-block_is_expected (1.0.6)
rubocop (1.64.1)
rubocop (1.65.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
Expand Down Expand Up @@ -106,10 +108,10 @@ GEM
simplecov-rcov (0.3.7)
simplecov (>= 0.4.1)
simplecov_json_formatter (0.1.4)
standard (1.37.0)
standard (1.40.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.64.0)
rubocop (~> 1.65.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.4)
standard-custom (1.0.2)
Expand Down Expand Up @@ -139,11 +141,12 @@ GEM

PLATFORMS
arm64-darwin-22
arm64-darwin-23

DEPENDENCIES
byebug (>= 11)
kettle-soup-cover (~> 1.0, >= 1.0.2)
minitest (>= 5)
minitest (>= 5, < 6)
rake (>= 13)
rubocop-lts (~> 18.2, >= 18.2.1)
rubocop-minitest (~> 0.36)
Expand Down
3 changes: 2 additions & 1 deletion ruby-openid2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ Gem::Specification.new do |spec|
spec.metadata["funding_uri"] = "https://liberapay.com/pboling"
spec.metadata["rubygems_mfa_required"] = "true"

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

spec.add_development_dependency("minitest", ">= 5")
spec.add_development_dependency("minitest", ">= 5", "< 6") # Use assert_nil if expecting nil
spec.add_development_dependency("rake", ">= 13")
spec.add_development_dependency("webrick", "~> 1.8")

Expand Down

0 comments on commit c6ea1a9

Please sign in to comment.