Add racc dependency because it will be bundled

Ruby 3.3.0 is going to start warning for racc not being specififed as a
dependency, and Ruby 3.4.0 will raise if it is not specified.

This commit prevents those issues by adding racc to the Action Pack
gemspec, since `racc/parser` is a runtime dependency of the Journey
parser.
This commit is contained in:
Hartley McGuire 2023-10-20 12:50:18 -04:00
parent 00dfa109d6
commit 5005480adf
No known key found for this signature in database
GPG Key ID: E823FC1403858A82
3 changed files with 5 additions and 0 deletions

@ -50,6 +50,7 @@ PATH
actionview (= 7.2.0.alpha)
activesupport (= 7.2.0.alpha)
nokogiri (>= 1.8.5)
racc
rack (>= 2.2.4)
rack-session (>= 1.0.1)
rack-test (>= 0.6.3)

@ -1,2 +1,5 @@
* Add `racc` as a dependency since it will become a bundled gem in Ruby 3.4.0
*Hartley McGuire*
Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/actionpack/CHANGELOG.md) for previous changes.

@ -36,6 +36,7 @@
s.add_dependency "activesupport", version
s.add_dependency "nokogiri", ">= 1.8.5"
s.add_dependency "racc"
s.add_dependency "rack", ">= 2.2.4"
s.add_dependency "rack-session", ">= 1.0.1"
s.add_dependency "rack-test", ">= 0.6.3"