What is the best code review tool for Ruby on Rails projects?
We are currently using Subversion, but considering moving to GIT.
|
What is the best code review tool for Ruby on Rails projects? We are currently using Subversion, but considering moving to GIT. |
|||||||||
|
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.
|
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. |
|||
|
At Puppet Camp I believe a speaker noted that Twitter was using a combination of Review Board and Campfire. |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||||
|