public
Description: Pure Ruby implementation of an SFTP (protocols 1-6) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-sftp.git
Search Repo:
prep for next preview release
jamis (author)
Thu Apr 10 10:15:10 -0700 2008
commit  05734d70f337d40d16ca6647d3068d3de7bf1e22
tree    faaf49193fd83847b891e726b894ab5e0dec0b2c
parent  a2e6fa5bcc454b086cca075d3a2f74716b5fd139
...
1
 
2
3
4
5
6
7
8
9
 
...
 
1
2
3
4
5
6
7
 
8
9
0
@@ -1,8 +1,8 @@
0
-=== *unreleased*
0
+=== 2.0 Preview Release 2 (1.99.1) / 10 Apr 2008
0
 
0
 * Custom properties on Upload instances [Jamis Buck]
0
 
0
 
0
 === 2.0 Preview Release 1 (1.99.0) / 22 Mar 2008
0
 
0
-* Rewritten! (Never, ever, do this at home.) New and improved API.
0
\ No newline at end of file
0
+* Rewritten! (Never, ever, do this at home.) New and improved API.
...
6
7
8
9
 
10
11
12
...
15
16
17
18
19
 
...
6
7
8
 
9
10
11
12
...
15
16
17
 
18
19
0
@@ -6,7 +6,7 @@ module Net; module SFTP
0
   class Version < Net::SSH::Version
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     # The current version, as a Version instance
0
     CURRENT = new(MAJOR, MINOR, TINY)
0
@@ -15,4 +15,4 @@ module Net; module SFTP
0
     STRING = CURRENT.to_s
0
   end
0
 
0
-end; end
0
\ No newline at end of file
0
+end; end

Comments

    No one has commented yet.