public
Description: Remote multi-server automation tool. This repository is no longer being actively maintained. Please ask on the mailing list to find someone who has a well-maintained fork. Thanks!
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
No, seriously. Gem dependencies for real.
Jamis Buck (author)
Sat Jun 28 07:29:19 -0700 2008
commit  ad0a1c2c8bb4d481f59ce15267db1d9765f81554
tree    323a7c8ac3083f5c7a6803a9521d61867234b719
parent  b4771d28d43ff9f0ab7ad6493a9a6f9e3805b939
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+== 2.4.3 / June 28, 2008
0
+
0
+* Fix gem dependencies so gem actually understands them [Jamis Buck]
0
+
0
+
0
 == 2.4.2 / June 27, 2008
0
 
0
 * Specify gem dependencies in rakefile [Jamis Buck]
...
26
27
28
29
30
31
32
 
 
 
 
33
34
...
26
27
28
 
 
 
 
29
30
31
32
33
34
0
@@ -26,9 +26,9 @@ Echoe.new('capistrano', version) do |p|
0
   p.need_zip         = true
0
   p.rdoc_pattern     = /^(lib|README.rdoc|CHANGELOG.rdoc)/
0
 
0
-  p.dependencies     = ["net-ssh         >= 2.0.0",
0
-                        "net-sftp        >= 2.0.0",
0
-                        "net-scp         >= 1.0.0",
0
-                        "net-ssh-gateway >= 1.0.0",
0
+  p.dependencies     = ["net-ssh         >=2.0.0",
0
+                        "net-sftp        >=2.0.0",
0
+                        "net-scp         >=1.0.0",
0
+                        "net-ssh-gateway >=1.0.0",
0
                         "highline"]
0
 end
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@ module Capistrano
0
   class Version < Net::SSH::Version
0
     MAJOR = 2
0
     MINOR = 4
0
-    TINY  = 2
0
+    TINY  = 3
0
 
0
     # The current version, as a Version instance
0
     CURRENT = new(MAJOR, MINOR, TINY)

Comments