Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No need to install cgi gem manually because Ruby 3.2.0 ships cgi 0.3.…
…6 as a default gem This commit removes the workaround via rails#46595 because the current Rails main branch requires Ruby 3.2.0 that ships cgi 0.3.6 as a default gem. - Ruby 3.2.0 Released https://www.ruby-lang.org/en/news/2022/12/25/ruby-3-2-0-released/ > The following default gems are updated. > cgi 0.3.6 Using cgi gem 0.3.6 installed with Ruby 3.2.0 as a default gem passes the test when it uses cgi 0.3.5. ``` $ ruby -v ruby 3.2.0 (2022-12-25 revision a528908271) [x86_64-linux] $ cd rails/actionpack $ bundle install Bundle complete! 87 Gemfile dependencies, 237 gems now installed. Use `bundle info [gemname]` to see where a bundled gem is installed. $ bundle info cgi * cgi (0.3.6) Summary: Support for the Common Gateway Interface protocol. Homepage: https://github.com/ruby/cgi Source Code: https://github.com/ruby/cgi Path: /home/yahonda/.rbenv/versions/3.2.0/lib/ruby/gems/3.2.0/gems/cgi-0.3.6 Default Gem: yes $ bin/test test/dispatch/session/cookie_store_test.rb -n test_session_store_with_all_domains Running 27 tests in a single process (parallelization threshold is 50) Run options: -n test_session_store_with_all_domains --seed 59282 . Finished in 0.107261s, 9.3231 runs/s, 18.6461 assertions/s. 1 runs, 2 assertions, 0 failures, 0 errors, 0 skips $ ```
- Loading branch information