at(path, options = {})
public
Construct an installer object for the gem file located at path
# File lib/rubygems/installer.rb, line 104
def self.at(path, options = {})
security_policy = options[:security_policy]
package = Gem::Package.new path, security_policy
new package, options
end