Patch #32542
Fix ruby 2.7 warning: The last argument is used as the keyword parameter
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Ruby support | |||
Target version: | - |
Description
I run rake test on ruby 2.7, there are several warnings about keyword argument.
I fix it by adding `**`.
Related issues
Associated revisions
History
#1
Updated by Mischa The Evil over 2 years ago
Just my two cents on this: given all the reverts in the 2.7 pre-releases, I'd suggest to wait with the commit of this patch until a 2.7 final release.
#2
Updated by Seiei Miyagi over 2 years ago
I updated the patch.
Change **options.merge(other: opt)
to **options, other: opt
.
#3
Updated by Seiei Miyagi over 2 years ago
#4
Updated by Go MAEDA over 2 years ago
- Related to Feature #31500: Ruby 2.7 support added
#5
Updated by Go MAEDA over 2 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
Committed as a part of #31500. Thank you.