public
Description: CruiseControl.rb is a continuous integration tool, written in Ruby. It is quick to install, simple to use and easy to hack.
Homepage: http://cruisecontrolrb.thoughtworks.com/
Clone URL: git://github.com/benburkert/cruisecontrolrb.git
fixed adding svn projects
Muness Alrubaie (author)
Thu Mar 13 07:49:36 -0700 2008
commit  2521a44d56609d3c1d8ed02175d774bc145fbc18
tree    442956cc44c5dc4aa37f56291ac7d3af890c3973
parent  d58ccb88f318a1bcaf6888205e57c9d7acf87582
...
1
2
 
 
 
 
 
3
4
5
 
 
...
1
 
2
3
4
5
6
7
 
8
9
10
0
@@ -1,4 +1,9 @@
0
 == For git support
0
-To setup git projects, you'll need the following gems:
0
+
0
+You'll need Git:
0
+ * http://git.or.cz/#download for instructions
0
+
0
+To the following gems:
0
  * grit
0
- * mime-types
0
\ No newline at end of file
0
+ * mime-types
0
+
...
1
2
3
4
5
6
7
8
9
10
 
 
 
 
 
 
...
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
0
@@ -1,9 +1,6 @@
0
- - Make adding svn projects work again:
0
- ./cruise add another_project --svn-url <svn-url>
0
- cruise data root = '/Users/../.cruise'
0
- Adding project 'another_project' (this may take a while)...
0
- cruise data root = '/Users/.../.cruise'
0
- FAILED: don't know how to handle 'svn'
0
- - Modify README to reference Ben Burkett's Git Repo (installation)
0
- - Add minimal INSTALL document to document adding new git/svn projects
0
- - Add usage document to describe starting CruiseControl.rb (./cruise start)
0
\ No newline at end of file
0
+ - Modify README to indicate that this is a fork documenting changes:
0
+ - Git support
0
+ - What else?
0
+
0
+ - Add minimal INSTALL document to reference Ben Burkett's Git Repo, document adding new git/svn projects
0
+ - Add usage document to describe starting CruiseControl.rb (./cruise start)
...
60
61
62
 
63
64
65
...
60
61
62
63
64
65
66
0
@@ -60,6 +60,7 @@ begin
0
   require RAILS_ROOT + "/config/environment"
0
   
0
   if scm_options.has_key?(:svn)
0
+ scm_options.delete(:svn)
0
     source_control = Subversion.new(scm_options)
0
   elsif scm_options.has_key?(:git)
0
     source_control = Git.new(scm_options)

Comments

    No one has commented yet.