summaryrefslogtreecommitdiff
path: root/lib/net/ssh/multi/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/ssh/multi/version.rb')
-rw-r--r--lib/net/ssh/multi/version.rb21
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