Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.

Commit 4a0ec5c

Browse files
committed
Remove some crazy
1 parent 0566789 commit 4a0ec5c

File tree

2 files changed

+7
-22
lines changed

2 files changed

+7
-22
lines changed

lib/net/ssh/shell/version.rb

+6-21
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,7 @@
1-
require 'net/ssh/version'
2-
3-
module Net; module SSH; class Shell
4-
# A trivial class for representing the version of this library.
5-
class Version < Net::SSH::Version
6-
# The major component of the library's version
7-
MAJOR = 0
8-
9-
# The minor component of the library's version
10-
MINOR = 2
11-
12-
# The tiny component of the library's version
13-
TINY = 0
14-
15-
# The library's version as a Version instance
16-
CURRENT = new(MAJOR, MINOR, TINY)
17-
18-
# The library's version as a String instance
19-
STRING = CURRENT.to_s
1+
module Net
2+
module SSH
3+
class Shell
4+
VERSION = "0.2.0"
5+
end
206
end
21-
end; end; end
22-
7+
end

net-ssh-shell.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require File.expand_path("../lib/net/ssh/shell/version", __FILE__)
22

33
Gem::Specification.new do |s|
44
s.name = "net-ssh-shell"
5-
s.version = Net::SSH::Shell::Version::STRING
5+
s.version = Net::SSH::Shell::VERSION
66
s.platform = Gem::Platform::RUBY
77
s.authors = ["Jamis Buck"]
88
s.email = ["jamis@jamisbuck.org"]

0 commit comments

Comments
 (0)