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
fix tests and update changelog [#3 tagged:committed state:resolved]
Jamis Buck (author)
Mon May 05 07:46:46 -0700 2008
commit  61808dd6e0b47e6496c6406fde512156af5899e2
tree    5385dda3b9673cb87d6d580f2ac2b3b2a1497e23
parent  b906d85314d0c844a4573814080a074ca03563c8
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+*unreleased*
0
+
0
+* Add debug switch for enabling conditional execution of commands [Mark Imbriaco]
0
+
0
+
0
 *2.3.0* May 2, 2008
0
 
0
 * Make sure git fetches include tags [Alex Arnell]
...
15
16
17
18
 
19
20
21
...
15
16
17
 
18
19
20
21
0
@@ -15,7 +15,7 @@ class CLIExecuteTest < Test::Unit::TestCase
0
   def setup
0
     @cli = MockCLI.new
0
     @logger = stub_everything
0
-    @config = stub(:logger => @logger)
0
+    @config = stub(:logger => @logger, :debug= => nil)
0
     @config.stubs(:set)
0
     @config.stubs(:load)
0
     @config.stubs(:trigger)
...
4
5
6
 
7
8
9
...
4
5
6
7
8
9
10
0
@@ -4,6 +4,7 @@ require 'capistrano/configuration/actions/invocation'
0
 class ConfigurationActionsInvocationTest < Test::Unit::TestCase
0
   class MockConfig
0
     attr_reader :options
0
+    attr_accessor :debug
0
 
0
     def initialize
0
       @options = {}

Comments