-
-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove ActiveSupport String inflections #14917
Conversation
Review period will end on 2023-03-08 at 18:30:07 UTC. |
# ["HTTPAPI", "http_api"], | ||
["HTTP::Get", "http/get"], | ||
["SSLError", "ssl_error"], | ||
# ["RESTful", "restful"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe these examples already don't work (trying them in brew irb
on master), so this shouldn't be a breaking change, just highlighting where we aren't matching the ActiveSupport test suite.
Review period skipped due to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks again @dduugg!
brew style
with your changes locally?brew typecheck
with your changes locally?brew tests
with your changes locally?Relates to #10508
This removes
ActiveSupport
String
inflections. The performance impact is minimal, bc most of the time was spent in requiringi18n
, which remains as a transitive require (I prefer to pull these out one at a time).