In my day work, I work on your classic Java aplication. We use as "software factory" : Maven, Hudson and Sonar.

In my night work, I work on personnal ruby on rails stuff. I have a certain number of applications, not much known but that's not my question. My question is :

Is there tool like Hudson - Sonar for ruby on rails ? Bundle and gemfiles do the maven job, but is there anything out there to do the hudson and sonar job ? For me, it's summed up to this 2 : - build and run tests on commit - build quality metrics and code statistics on demand

Regards to you.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Hudson will do the trick.

We use the Hudson Rake plugin and Ruby metrics plugin.

link|improve this answer
feedback

We use Hudson for building a Rails 3 project which is hosted on Github.

We have setup RVM, Bundler, Rspec, Cucumber, Xvfb (for headless browser based features), Xvnc (for watching the build remotely).

The build runs on on HCPU XLARGE EC2 slaves running Ubuntu 10.04 spawned with Hudson's EC2 plugin. We use parallel_tests gem to parallelize our specs and cucumber features to utilize all available cores and memory. This has helped us bring a monster ~35 min single threaded build down to ~6 mins.

As for the metrics, we have a Hudson job which runs a metrics build using metric_fu

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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