Method: Gem::Package::SymlinkError#initialize

Defined in:
lib/rubygems/package.rb

#initialize(name, destination, destination_dir) ⇒ SymlinkError

Returns a new instance of SymlinkError.



76
77
78
79
# File 'lib/rubygems/package.rb', line 76

def initialize(name, destination, destination_dir)
  super "installing symlink '%s' pointing to parent path %s of %s is not allowed" %
          [name, destination, destination_dir]
end