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

Commit

Permalink
Remove some crazy
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche committed Feb 13, 2011
1 parent 0566789 commit 4a0ec5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 22 deletions.
27 changes: 6 additions & 21 deletions lib/net/ssh/shell/version.rb
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
require 'net/ssh/version'

module Net; module SSH; class 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 = 2

# 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
2 changes: 1 addition & 1 deletion net-ssh-shell.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require File.expand_path("../lib/net/ssh/shell/version", __FILE__)

Gem::Specification.new do |s|
s.name = "net-ssh-shell"
s.version = Net::SSH::Shell::Version::STRING
s.version = Net::SSH::Shell::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jamis Buck"]
s.email = ["jamis@jamisbuck.org"]
Expand Down

0 comments on commit 4a0ec5c

Please sign in to comment.