Commit 753f66e
Add logger gem to fix Ruby 4.0 deprecation warning
Ruby 3.4+ warns that logger will no longer be a default gem in Ruby 4.0.
Explicitly adding it to Gemfile prevents this warning:
'warning: logger was loaded from the standard library, but will
no longer be part of the default gems starting from Ruby 4.0.0.'
The logger gem is a dependency of excon (used by docker-api), but
it's being transitioned from a default gem to a regular gem.
By explicitly including it, we:
- Silence the deprecation warning
- Ensure forward compatibility with Ruby 4.0
- Make the dependency explicit rather than implicit
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>1 parent ae9f100 commit 753f66e
2 files changed
+6
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
| 51 | + | |
50 | 52 | | |
51 | 53 | | |
52 | 54 | | |
0 commit comments