Actions
Patch #32542
closedFix ruby 2.7 warning: The last argument is used as the keyword parameter
Start date:
Due date:
% Done:
0%
Estimated time:
Description
I run rake test on ruby 2.7, there are several warnings about keyword argument.
I fix it by adding `**`.
Files
Related issues
Updated by Mischa The Evil almost 5 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.
Updated by Seiei Miyagi almost 5 years ago
- File 0001-Fix-ruby-2.7-warning-The-last-argument-is-used-as-th.patch 0001-Fix-ruby-2.7-warning-The-last-argument-is-used-as-th.patch added
I updated the patch.
Change **options.merge(other: opt)
to **options, other: opt
.
Updated by Go MAEDA almost 5 years ago
- Related to Feature #31500: Ruby 2.7 support added
Updated by Go MAEDA almost 5 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
Committed as a part of #31500. Thank you.
Actions