Sha256: 0b08def79b29a4ea33d6860d9cdaf3b8854f4d58d9ca4102daa579868e94d1bc

Contents?: true

Size: 331 Bytes

Versions: 25

Compression:

Stored size: 331 Bytes

Contents

module BuildTool
    #
    # Encapsulates a ssh key
    #
    class SshKey

        def initialize(name, file = nil)
            @name = name
            @file = file
        end

        attr_reader :name

        attr_accessor :file

        def to_s
            @file
        end

    end # class SshKey

end # module BuildTool

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
build-tool-0.1.4 lib/build-tool/sshkey.rb
build-tool-0.1.3 lib/build-tool/sshkey.rb
build-tool-0.1.2 lib/build-tool/sshkey.rb
build-tool-0.1.0 lib/build-tool/sshkey.rb
build-tool-0.1.1 lib/build-tool/sshkey.rb