-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Fixed #4278: String#underscore with digit #4280
Fixed #4278: String#underscore with digit #4280
Conversation
Treat digit as downcase character. But in upcase characters it treats like upcase character. It works fine.
https://travis-ci.org/crystal-lang/crystal/jobs/221621776 Hmm... NOTE: Original OpenSSL constant name is |
Let's rename openssl constants to match this new behaviour. Since we are fixing this, what happens if you pass other characters like some of |
a8ad45b
to
aba7363
Compare
@asterite Apologize for delay. I renamed OpenSSL constants for changes and updated this branch. I know ActiveSupport's |
I prefer to use ActiveSupport compatible behavior when it's possible and have no drawbacks. |
I'm sure |
@asterite ping |
Thank you @makenowjust !!! |
@mverzilli Can you close #4281? |
Fixed #4278.
It treats digit characters as downcase characters. But in upcase characters it treats like upcase characters. It works fine.
Thank you.