public
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
Search Repo:
The CLI is responsible for putting the text on STDOUT, not the info 
command.

This cleans up the tests, since the output only consists of clean dots.
francois (author)
Tue May 13 15:27:57 -0700 2008
commit  ae858b7b7efd66d57d7d8e5dff01e2483013269e
tree    b332d136f2a42e281e024ff8f31ee122012a17cc
parent  2aeee27076fce0c7d1130d3825afd7e4ab0c02cc
...
186
187
188
189
 
190
191
192
...
186
187
188
 
189
190
191
192
0
@@ -186,7 +186,7 @@
0
                                              :quiet => params["quiet"].value,
0
                                              :force => params["force"].value)
0
       begin
0
- cmd.run(params["directory"].value)
0
+ puts cmd.run(params["directory"].value)
0
       rescue Piston::WorkingCopy::NotWorkingCopy
0
         puts "The #{params["directory"].value} is not Pistonized"
0
       end
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@
0
       def run(wcdir)
0
         working_copy = Piston::WorkingCopy.guess(wcdir)
0
         raise Piston::WorkingCopy::NotWorkingCopy if !working_copy.exist? || !working_copy.pistonized?
0
- puts working_copy.info
0
+ working_copy.info.to_yaml
0
       end
0
     end
0
   end

Comments

    No one has commented yet.