summaryrefslogtreecommitdiff
path: root/pkg/net-ssh-multi-1.1/lib/net/ssh/multi/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/net-ssh-multi-1.1/lib/net/ssh/multi/version.rb')
-rw-r--r--pkg/net-ssh-multi-1.1/lib/net/ssh/multi/version.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/net-ssh-multi-1.1/lib/net/ssh/multi/version.rb b/pkg/net-ssh-multi-1.1/lib/net/ssh/multi/version.rb
new file mode 100644
index 0000000..5b1bf82
--- /dev/null
+++ b/pkg/net-ssh-multi-1.1/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 = 1
+
+ # The minor component of the library's version
+ MINOR = 1
+
+ # 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