search for: damagecontrol

Displaying 9 results from an estimated 9 matches for "damagecontrol".

2005 Dec 28
1
advice needed: damagecontrol or CIA?
Hi, I''m looking to set up a continuous integration server for a rails application. This application is under source control with darcs. I''ve read about damagecontrol and CIA, and wonder what experience you can share so I can make my mind. CIA seems to work with a post-commit so I should be able to use it with darcs. And as it is in the rails svn repository, I have good hope that it stays maintained and evolves in time (whereas damagecontrol mailing lists have...
2006 Jan 30
2
DamageControl
Is there anyone on this list running DamageControl on a Debian or a Windows system ? If so would you care to share how you accomplished this (details ... it''s all in the details) ? While I will still work through the problems I am encountering (it''s a great learning experience) I would still like to have a working instance of Da...
2005 Nov 17
6
lock problems from concurrent processes.
Hi! First, thanks a LOT for ferret. The API and documentation is great. I''m trying to integrate ferret into a RoR app (DamageControl) and have run into a problem with locks. DamageControl consists of two processes that start up and run in parallel. The first one is the webapp (which is just a plain RoR app). The second is a daemon process that runs in the background. The daemon process writes to the index, and the webapp reads...
2006 Oct 20
6
Nightly Linux build?
Hey guys, I''m really sorry to be so out of touch these days. We just hired two new programmers at work so I''m busy bringing them up to speed...in time for them to help us get a major release out at the end of the year. So my personal goals for wxruby participation at the moment are: 1. Respond to any support requests as quickly as possible 2. Respond to any questions from you
2004 Nov 23
2
streams in fork
hi all, is there a way to use fork with redirected streams? i mean in a similar way that ruby''s standard open3 does it. i''d like to be able to read the stdout/stdin/stderr streams from the forked ruby process in the parent process. cheers, aslak
2006 Jun 02
0
Licensing question
I''m considering using rubytorrent as the transport in a distributed build system. (DamageControl - a rails-based continuous integration server similar to buildbot - http://buildbot.sourceforge.net/ and bitten - http://bitten.cmlenz.net/) DamageControl is going to be licensed under a BSD license, so I was wondering if you''d consider providing a dual license for rubytorrent that is BSD...
2005 Nov 17
1
indexing source code
Hi again, I''m using ferret to index source code - DamageControl will allow users to search for text in source code. Currently I''m using the default index with no custom analyzer (I''m using the StandardAnalyzer). Do you have any recommendations about how to write an analyzer that will index source code in a more ''optimal'' way...
2006 Jan 23
0
continuous integration - how do you do it?
Hi All, In the absence of any clear picture about whether damagecontrol is a practical option for continuous integration, I set up the following scripts on my server to run the rails functional and unit tests each day and mail me the results: :::::::::::::: run_functional_tests.sh :::::::::::::: #!/bin/bash cd /var/www/ruby/srjoseph/prometheus rake test_functional &a...
2006 Jul 02
7
Generic SingleTable inheritance
Hi all, I would like to discuss a design idea I have in mind with you, in order to get critical feedback. ActiveRecord supports single table inheritance(STI) "per se", BUT you must add all possible instance variables(properties) of all subclasses to the "base table"(as columns). I would like to circumvent this restriction. Say we have a class AbstractGenericThing <