vote up 11 vote down star
4

I've been searching around for a Continuous Integration solution for Ruby on Rails, but haven't been too pleased with the results. I came from a .NET shop that used CruiseControl.NET and was really spoiled with it's ease of use and rich status/reporting.

Ideally I'm looking for:

  • The obvious Git/SVN and Test::Unit integration

  • Integration with Rake and/or Capistrano

  • A web interface showing the status of the build

  • Email notification of failed builds.

  • Desktop notification (potentially through Growl)

  • REST API for build statuses

  • Plugin framework for running other code analysis tools and reporting results in the UI

flag

8 Answers

vote up 17 vote down check

How about CruiseControl.rb?

Same crowd that did CruiseControl (thoughtworks) and written in Ruby. Very easy to use Rake to integrate your other tools, and can use the ruby-growl gem for your nitifications.

link|flag
I've had trouble getting this to run on windows... didn't work as advertised in the 'it can't be that easy' video on the site for me. – Gishu Oct 21 '08 at 4:35
vote up 3 vote down

cruisecontrol.rb would be the perfect match then.

http://cruisecontrolrb.thoughtworks.com/

link|flag
vote up 3 vote down

You might also want to consider Hudson. It is designed for use with Java projects although there is a great selection of plug-ins available including support for Ruby and Rake. It has a very useful web interface and supports email notifications as well as many others (like twitter, or giant bear lamps).

The community is also very active and there have been several articles on hooking up Hudson with Selenium which you might be helpful for testing Rails applications on the browser side.

Another one look at is Team City which is free for small projects and teams (including commercial). I really like Team City and have used it before for other projects but currently we're using Mercurial for source control and Team City's support was a little too beta when we were considering it.

I switched from CruiseControl.net to Team City and was absolutely shocked at the improvement. I'm partial to Hudson though because of its similar feature set and very active community.

link|flag
vote up 2 vote down

Like a number of people I was a huge fan of cruisecontrol.rb, but have recently switched my projects to Integrity.

Lightweight and easy to setup (much like cc.rb), but with a nicer interface.

link|flag
vote up 1 vote down

Please take a look at http://teamcitydev.blogspot.com/2008/11/most-advanced-continuous-integration.html

link|flag
vote up 1 vote down

Run Code Run might be what you need.

link|flag
vote up 0 vote down

I've gotta vote for Cerberus

Its a very light-weight CI tool that is installed as a Ruby gem

link|flag
vote up 0 vote down

I just published a very simple Continuous Integration App for RubyOnRails + SVN/GIT. Maybe you should give it a try:

http://github.com/felipegiotto/Inotegration/tree/master

I took some ideas of measurement and testing tools and, after trying some CI tools and not liking anyone of them, I decided to build my own, without needing to build big XML files or any other configuration. Just the way Rails was made to be.

If you like, please send me some feedback..

Best regards,

Felipe Giotto.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.