Fix keyword argument separation issues in lib

Mostly requires adding ** in either calls or method definitions.
This commit is contained in:
Jeremy Evans 2019-04-07 16:44:49 -07:00
parent 3f67fcd3d5
commit d08e1004e0
Notes: git 2019-08-31 04:40:18 +09:00
13 changed files with 38 additions and 38 deletions

View file

@ -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