Earlopain a82e7132df Fix uplevel for cgi under bundler
Since there is `bundled_gems.rb` it is not always one. Fixes the following:
```sh
$ ruby -w -rbundler/inline -e "gemfile {}; require 'cgi'"
/home/earlopain/.rbenv/versions/ruby-dev/lib/ruby/3.5.0+0/bundled_gems.rb:59: warning: CGI library is removed from Ruby 3.5. Please use cgi/escape instead for CGI.escape and CGI.unescape features.
If you need to use the full features of CGI library, Please install cgi gem.
```

into:

```sh
$ ruby -w -rbundler/inline -e "gemfile {}; require 'cgi'"
-e:1: warning: CGI library is removed from Ruby 3.5. Please use cgi/escape instead for CGI.escape and CGI.unescape features.
If you need to use the full features of CGI library, Please install cgi gem.
```
2025-05-20 18:22:41 +09:00
..
2025-05-14 15:13:45 +09:00
2025-05-20 18:22:41 +09:00
2025-05-14 17:10:04 +00:00
2025-04-10 17:29:39 +09:00
2025-05-20 18:22:41 +09:00
2024-11-07 02:26:50 +00:00
2025-05-13 17:50:05 +00:00
2025-04-26 11:56:42 +00:00
2025-05-12 02:50:25 +09:00
2024-11-06 08:37:52 +00:00
2024-11-12 11:53:01 +09:00
2025-04-26 10:31:11 +09:00
2024-12-13 00:50:02 +00:00
2024-11-08 03:54:21 +00:00
2024-11-18 04:28:47 +00:00
2024-12-16 03:53:22 +00:00
2024-12-17 06:47:52 +00:00