lib/net/ssh/shell/version.rb in net-ssh-shell-0.1.0 vs lib/net/ssh/shell/version.rb in net-ssh-shell-0.2.0
- old
+ new
@@ -1,22 +1,7 @@
-require 'net/ssh/version'
-
-module Net; module SSH; module Shell
- # 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 = 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
+module Net
+ module SSH
+ class Shell
+ VERSION = "0.2.0"
+ end
end
-end; end; end
-
+end