module Bundler::FileUtils

def remove_file(path, force = false)


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

raised exceptions of StandardError and its descendants.
Optional argument +force+ specifies whether to ignore

should be {interpretable as a path}[rdoc-ref:FileUtils@Path+Arguments].
Argument +path+

which should be the entry for a regular file or a symbolic link.
Removes the file entry given by +path+,
def remove_file(path, force = false)
  Entry_.new(path).remove_file
rescue
  raise unless force
end