Sha256: d1307df3143776f41c76ad5d1244ee987842755e753ab58d30baf13a0467b6a0
Contents?: true
Size: 547 Bytes
Versions: 1
Compression:
Stored size: 547 Bytes
Contents
require 'net/ssh/version' module Net; module SSH; module Multi # A trivial class for representing the version of this library. class Version < Net::SSH::Version # The major component of the library's version MAJOR = 1 # The minor component of the library's version MINOR = 0 # The tiny component of the library's version TINY = 0 # The library's version as a Version instance CURRENT = new(MAJOR, MINOR, TINY) # The library's version as a String instance STRING = CURRENT.to_s end end; end; end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
net-ssh-multi-1.0.0 | lib/net/ssh/multi/version.rb |