Sha256: a63d64a48a24b4d863e571b66d86a21f900a084780adebb7d6922322a532ffe9
Contents?: true
Size: 348 Bytes
Versions: 31
Compression:
Stored size: 348 Bytes
Contents
# frozen_string_literal: true module Facter module Util module Resolvers class Ssh attr_accessor :fingerprint, :type, :key, :name def initialize(fingerprint, type, key, name) @fingerprint = fingerprint @type = type @key = key @name = name end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems