diff options
author | Jamis Buck <jamis@37signals.com> | 2008-03-30 16:55:33 -0600 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2008-03-30 16:55:33 -0600 |
commit | ff0b379fca1382004123036c3045a723b84694fd (patch) | |
tree | 23c00e532b242ed7006d19ebc78e31e147e54156 /lib/net/ssh/multi/version.rb | |
parent | 45eee50ba0d47b5badf970ffbb10ca20bec1dc9e (diff) | |
download | net-ssh-multi-ff0b379fca1382004123036c3045a723b84694fd.tar.gz |
add the project metafiles
Diffstat (limited to 'lib/net/ssh/multi/version.rb')
-rw-r--r-- | lib/net/ssh/multi/version.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/net/ssh/multi/version.rb b/lib/net/ssh/multi/version.rb new file mode 100644 index 0000000..aa180aa --- /dev/null +++ b/lib/net/ssh/multi/version.rb @@ -0,0 +1,21 @@ +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 = 0 + + # The minor component of the library's version + MINOR = 99 + + # 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
\ No newline at end of file |