mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 05:55:46 +02:00
Fix keyword argument separation issues in lib
Mostly requires adding ** in either calls or method definitions.
This commit is contained in:
parent
3f67fcd3d5
commit
d08e1004e0
Notes:
git
2019-08-31 04:40:18 +09:00
13 changed files with 38 additions and 38 deletions
|
@ -129,7 +129,7 @@ By default, this RubyGems will install gem as:
|
|||
end
|
||||
|
||||
module MakeDirs
|
||||
def mkdir_p(path, *opts)
|
||||
def mkdir_p(path, **opts)
|
||||
super
|
||||
(@mkdirs ||= []) << path
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue