class Bundler::InsecureInstallPathError
Public Class Methods
new(path)
click to toggle source
# File bundler/errors.rb, line 220 def initialize(path) @path = path end
Public Instance Methods
message()
click to toggle source
# File bundler/errors.rb, line 224 def message "The installation path is insecure. Bundler cannot continue.\n" \ "#{@path} is world-writable (without sticky bit).\n" \ "Bundler cannot safely replace gems in world-writeable directories due to potential vulnerabilities.\n" \ "Please change the permissions of this directory or choose a different install path." end