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.5.7 lib/build-tool/sshkey.rb
build-tool-0.5.6 lib/build-tool/sshkey.rb
build-tool-0.5.5 lib/build-tool/sshkey.rb
build-tool-0.5.4 lib/build-tool/sshkey.rb
build-tool-0.5.3 lib/build-tool/sshkey.rb
build-tool-0.5.2 lib/build-tool/sshkey.rb
build-tool-0.4.6 lib/build-tool/sshkey.rb
build-tool-0.5.1 lib/build-tool/sshkey.rb
build-tool-0.4.5 lib/build-tool/sshkey.rb
build-tool-0.5.0 lib/build-tool/sshkey.rb
build-tool-0.4.4 lib/build-tool/sshkey.rb
build-tool-0.4.3 lib/build-tool/sshkey.rb
build-tool-0.4.2 lib/build-tool/sshkey.rb
build-tool-0.4.1 lib/build-tool/sshkey.rb
build-tool-0.4.0 lib/build-tool/sshkey.rb
build-tool-0.3.3 lib/build-tool/sshkey.rb
build-tool-0.3.2 lib/build-tool/sshkey.rb
build-tool-0.3.1 lib/build-tool/sshkey.rb
build-tool-0.3 lib/build-tool/sshkey.rb
build-tool-0.2 lib/build-tool/sshkey.rb