module Bundler::FileUtils

def rm_f(list, noop: nil, verbose: nil)


Related: {methods for deleting}[rdoc-ref:FileUtils@Deleting].

See Bundler::FileUtils.rm for keyword arguments.

should be {interpretable as paths}[rdoc-ref:FileUtils@Path+Arguments].
Argument +list+ (a single path or an array of paths)

Bundler::FileUtils.rm(list, force: true, **kwargs)

Equivalent to:
def rm_f(list, noop: nil, verbose: nil)
  rm list, force: true, noop: noop, verbose: verbose
end