Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best code review tool for Ruby on Rails projects?

We are currently using Subversion, but considering moving to GIT.

share|improve this question
1  
Version control? like git or SVN , or code review? like review board etc..? – macarthy Mar 1 '11 at 0:53
@macarthy: Unless the OP meant a pre-commit hook. – Andrew Grimm Mar 1 '11 at 2:21
Pre-commit code review. Ideally, the developer submits the code for a code review. Once the changes approved they get committed to SCM automatically. I guess something similar to github's Pull request. – arkadiy Mar 1 '11 at 2:23

closed as not constructive by Bill the Lizard Jun 4 '12 at 2:00

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 4 down vote accepted

I would look into leveraging Github's pull request model; it works really well for pre-commit code reviews. Check out the above link for all of its goodness.

share|improve this answer
Are there any tools similar to the pull request I can install inside my company's intranet? – arkadiy Mar 2 '11 at 1:17
Yeah; Github has an "internal" install. – Dave Bettin Mar 3 '11 at 3:56
You should check out Stash from Atlassian. A much more affordable inhouse tool than the Github internal version. – Jordan Oct 29 '12 at 5:15

At Puppet Camp I believe a speaker noted that Twitter was using a combination of Review Board and Campfire.

share|improve this answer

When deciding on a code review tool, the first question you should be asking is what style of code review will you be conducting?

Do you want a pre-commit model, where code is reviewed prior to being committed to the repo?

Or do you want a post-commit model, where code is reviewed after being committed to the repo?

If you are moving to git (a move I strongly endorse) and want a pre-commit model, then I would check out gerrit. It is a git implementation of the tools used in-house at Google.

One of the interesting elements of the gerrit model, is that you have Validators and Reviewers.

Reviewers are what you think they are. Validators are tools that check code as part of the review process. For example, Jenkins could be a validator that confirms your code successfully builds, deploys, and executes your unit tests.

PS. By and large, I don't think your language or stack is that much of an issue with respect to your code review tool.

share|improve this answer

One tool you might want to include as part of your code review process is Brakeman, http://brakemanscanner.org

It focuses on Rails security issues via static analysis. I don't think its trying to detect other kinds of anti-patterns or problem code. But for its stated purpose, it seems to work well. I found it very easy to install and run using Rails 3.2

share|improve this answer
a bit off-topic but thanks for the link anyway. :)The project looks very interesting. – arkadiy Feb 24 '12 at 0:02
a comment that is worth for the question is that, recently a huge security flaw related to mass-assignment have been public disclosed, wich lead to epic github threads, and put some spotlights on brakeman. There is a quite good explanation of how brakeman can help you secure your application : pragtob.wordpress.com/2012/03/06/secure-your-rails-apps – Gabriel Mazetto Mar 10 '12 at 21:06

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