Sha256: b00044faaf2f02221c4ab69f269b3b9f22a52f81488d4c2f08593024ab23e80e

Contents?: true

Size: 356 Bytes

Versions: 12

Compression:

Stored size: 356 Bytes

Contents

# -*- coding: UTF-8 -*-

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

12 entries across 12 versions & 1 rubygems

Version Path
build-tool-0.6.9 lib/build-tool/sshkey.rb
build-tool-0.6.8 lib/build-tool/sshkey.rb
build-tool-0.6.7 lib/build-tool/sshkey.rb
build-tool-0.6.6 lib/build-tool/sshkey.rb
build-tool-0.6.5 lib/build-tool/sshkey.rb
build-tool-0.6.4 lib/build-tool/sshkey.rb
build-tool-0.6.3 lib/build-tool/sshkey.rb
build-tool-0.6.2 lib/build-tool/sshkey.rb
build-tool-0.6.1 lib/build-tool/sshkey.rb
build-tool-0.6.0 lib/build-tool/sshkey.rb
build-tool-0.6.0.rc2 lib/build-tool/sshkey.rb
build-tool-0.6.0.rc1 lib/build-tool/sshkey.rb