s/blk/block

This commit is contained in:
Douglas Eichelberger 2023-08-07 17:26:46 -07:00
parent 880362669b
commit 2b29c498fa
2 changed files with 6 additions and 6 deletions

View File

@ -2559,11 +2559,11 @@ class Formula
before: T.nilable(T.any(Pathname, Regexp, String)),
after: T.nilable(T.any(Pathname, String, Symbol)),
audit_result: T::Boolean,
blk: T.nilable(T.proc.params(s: StringInreplaceExtension).void),
block: T.nilable(T.proc.params(s: StringInreplaceExtension).void),
).void
}
def inreplace(paths, before = nil, after = nil, audit_result = true, &blk) # rubocop:disable Style/OptionalBooleanParameter
Utils::Inreplace.inreplace(paths, before, after, audit_result: audit_result, &blk)
def inreplace(paths, before = nil, after = nil, audit_result = true, &block) # rubocop:disable Style/OptionalBooleanParameter
Utils::Inreplace.inreplace(paths, before, after, audit_result: audit_result, &block)
rescue Utils::Inreplace::Error => e
onoe e.to_s
raise BuildError.new(self, "inreplace", Array(paths), {})

View File

@ -41,10 +41,10 @@ module Utils
before: T.nilable(T.any(Pathname, Regexp, String)),
after: T.nilable(T.any(Pathname, String, Symbol)),
audit_result: T::Boolean,
blk: T.nilable(T.proc.params(s: StringInreplaceExtension).void),
block: T.nilable(T.proc.params(s: StringInreplaceExtension).void),
).void
}
def self.inreplace(paths, before = nil, after = nil, audit_result: true, &blk)
def self.inreplace(paths, before = nil, after = nil, audit_result: true, &block)
paths = Array(paths)
after &&= after.to_s
before = before.to_s if before.is_a?(Pathname)
@ -58,7 +58,7 @@ module Utils
s = StringInreplaceExtension.new(str)
if before.nil? && after.nil?
raise ArgumentError, "Must supply a block or before/after params" unless blk
raise ArgumentError, "Must supply a block or before/after params" unless block
yield s
else