[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby and Continuous Integration

Cameron, Gemma (UK)

10/26/2006 2:38:00 PM


Now I've read a couple of old posts about this and the usual response is
"use Damage Control" but from the looks of it this hasn't been supported
for quite a while...

I'm just curious to see if anyone has used Ruby or Rake to build their
project and used CruiseControl or CruiseControl.NET to run it. I know
it's possible, it would simply need a [N]Ant script with an <exec> task.
However this will not report the results back for publishing as cleanly
or nicely as a nant task, or would it?

Do I need to re-write my rake file in nant?!

Again I'm just curious to find out if anyone is using Rake or Ruby with
CruiseControl.NET

Gem

********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************

6 Answers

Jacob Fugal

10/26/2006 3:03:00 PM

0

On 10/26/06, Cameron, Gemma (UK) <Gemma.Cameron@baesystems.com> wrote:
> Now I've read a couple of old posts about this and the usual response is
> "use Damage Control" but from the looks of it this hasn't been supported
> for quite a while...

It appears the project is defunct or at least in hibernation. I can't
even get to the repository.

> I'm just curious to see if anyone has used Ruby or Rake to build their
> project and used CruiseControl or CruiseControl.NET to run it. I know
> it's possible, it would simply need a [N]Ant script with an <exec> task.
> However this will not report the results back for publishing as cleanly
> or nicely as a nant task, or would it?
>
> Do I need to re-write my rake file in nant?!
>
> Again I'm just curious to find out if anyone is using Rake or Ruby with
> CruiseControl.NET

I haven't tried CruiseControl + Rake yet, but others have told me it's
possible. Another option I was just made aware of last week is
Cerberus[1]. Since then, I've also seen it mentioned in a blog and an
announcement of a new version on this list. So it seems pretty active.
It's still fairly new, but might be worth looking into. I'm planning
on checking it out this weekend.

Jacob Fugal

[1] http://cerberus.ruby...

Jason Rohwedder

10/26/2006 3:10:00 PM

0


If you're already using Trac to manage bugs and whatnot.. bitten is
pretty neat.. it's written in python, but it can run pretty much
anything. I haven't used it with rake yet, but I assume it could run
that as easily as a shell script. It's simple and does what I need
for the time being.
http://bitten.c...

Also, Luntbuild is rather configureable and can deal with many builds
and dependancies well. It's another java CI tool though.
http://luntbuild.java...

-jro

On Oct 26, 2006, at 9:37 AM, Cameron, Gemma (UK) wrote:

>
> Now I've read a couple of old posts about this and the usual
> response is
> "use Damage Control" but from the looks of it this hasn't been
> supported
> for quite a while...
>
> I'm just curious to see if anyone has used Ruby or Rake to build their
> project and used CruiseControl or CruiseControl.NET to run it. I know
> it's possible, it would simply need a [N]Ant script with an <exec>
> task.
> However this will not report the results back for publishing as
> cleanly
> or nicely as a nant task, or would it?
>
> Do I need to re-write my rake file in nant?!
>
> Again I'm just curious to find out if anyone is using Rake or Ruby
> with
> CruiseControl.NET
>
> Gem
>
> ********************************************************************
> This email and any attachments are confidential to the intended
> recipient and may also be privileged. If you are not the intended
> recipient please delete it from your system and notify the sender.
> You should not copy it or use it for any purpose nor disclose or
> distribute its contents to any other person.
> ********************************************************************


Hugh Sasse

10/26/2006 3:44:00 PM

0

Bil Kleb

10/26/2006 4:54:00 PM

0

Cameron, Gemma (UK) wrote:
> Now I've read a couple of old posts about this and the usual response is
> "use Damage Control" but from the looks of it this hasn't been supported
> for quite a while...

I bit off topic, but didn't DHH write a small CI
for Ruby/Rails development several months ago?

Later,
--
Bil Kleb
http://kleb.tadalist.com/lists/pub...

John Wilger

10/26/2006 6:33:00 PM

0

On 10/26/06, Bil Kleb <Bil.Kleb@nasa.gov> wrote:
> I bit off topic, but didn't DHH write a small CI
> for Ruby/Rails development several months ago?

Yes...but...

The one DH wrote is called CIA and can be had from the Rails svn
repository. The two things I don't like about it are that a) it runs
on the same server as the repo, and b) depending on the version of
Subversion you are running, your commits will hang while the tests are
run.

There are other options, though. There's a RubyForge project called
Cerebus, which does CI and can live on another machine.
http://rubyforge.org/projects...

I've also got a little application called (tongue-in-cheek) NSA that
can be had from svn://source.johnwilger.com/nsa/trunk . Be forewarned
that NSA is currently very much unpolished and of alpha quality -- it
works for most of our needs at work, but YMMV.

Jay Fields also posted about a similar CI solution to his website a
few months ago.
http://jayfields.blogspot.com/2006/07/ruby-continuous-integr...

--
Regards,
John Wilger
http://john...

-----------
Alice came to a fork in the road. "Which road do I take?" she asked.
"Where do you want to go?" responded the Cheshire cat.
"I don't know," Alice answered.
"Then," said the cat, "it doesn't matter."
- Lewis Carrol, Alice in Wonderland

Jacob Fugal

10/26/2006 7:19:00 PM

0

On 10/26/06, John Wilger <johnwilger@gmail.com> wrote:
> The one DH wrote is called CIA... <snip>
> I've also got a little application called (tongue-in-cheek) NSA... <snip>

So who's going to write the "Find Bugs Instantly" CI tool?

Jacob Fugal