public
Description: Pure Ruby implementation of the SCP protocol
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-scp.git
Search Repo:
jamis (author)
Thu May 01 21:13:30 -0700 2008
commit  6c9d479a8d3aeeea7f588c2004f950575dc3a4fc
tree    b0d0d87111fcc5db7c406aca9426e3c8d45362b9
parent  5b512cf084b76444dca1c7face0e84a10694c263
net-scp / lib / net / scp / version.rb
100644 18 lines (13 sloc) 0.367 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'net/ssh/version'
 
module Net; class SCP
 
  # Describes the current version of the Net::SCP library.
  class Version < Net::SSH::Version
    MAJOR = 1
    MINOR = 0
    TINY = 0
 
    # The current version, as a Version instance
    CURRENT = new(MAJOR, MINOR, TINY)
 
    # The current version, as a String instance
    STRING = CURRENT.to_s
  end
 
end; end