class Bundler::InsecureInstallPathError

def initialize(name, path)

def initialize(name, path)
  @name = name
  @path = path
end

def message

def message
  "Bundler cannot reinstall #{@name} because there's a previous installation of it at #{@path} that is unsafe to remove.\n" \
  "The parent of #{@path} is world-writable and does not have the sticky bit set, making it insecure to remove due to potential vulnerabilities.\n" \
  "Please change the permissions of #{File.dirname(@path)} or choose a different install path."
end