Skip to content

Commit

Permalink
Explicitly specify logger dependency (#274)
Browse files Browse the repository at this point in the history
On Ruby 3.5 the logger gem is no longer shipped with Ruby. Explicitly add the gem dependency to prevent warnings on Ruby 3.4 and errors on Ruby 3.5.

Reference: ruby/ruby@d7e558e
  • Loading branch information
david942j authored Jan 11, 2025
1 parent 2bfd078 commit 0861ce0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ PATH
remote: .
specs:
seccomp-tools (1.6.1)
logger
os (~> 1.1, >= 1.1.1)

GEM
Expand All @@ -12,6 +13,7 @@ GEM
docile (1.4.1)
json (2.9.1)
language_server-protocol (3.17.0.3)
logger (1.6.5)
os (1.1.4)
parallel (1.26.3)
parser (3.3.6.0)
Expand Down
1 change: 1 addition & 0 deletions seccomp-tools.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ Visit https://github.com/david942j/seccomp-tools for more details.
s.add_development_dependency 'simplecov', '~> 0.21'
s.add_development_dependency 'yard', '~> 0.9'

s.add_dependency 'logger'
s.add_dependency 'os', '~> 1.1', '>= 1.1.1'
end

0 comments on commit 0861ce0

Please sign in to comment.