class Rugged::Credentials::SshKey

A ssh key credential object that can optionally be passphrase-protected

def call(url, username_from_url, allowed_types)

def call(url, username_from_url, allowed_types)
  self
end

def initialize(options)

def initialize(options)
  @username, @publickey, @privatekey, @passphrase = options[:username], options[:publickey], options[:privatekey], options[:passphrase]
end