module Bundler::FileUtils

def remove_file(path, force = false)


This method ignores StandardError if +force+ is true.
Removes a file +path+.
def remove_file(path, force = false)
  Entry_.new(path).remove_file
rescue
  raise unless force
end