vote up 5 vote down star
6

Following on from my query Here, does anyone know of any good Peer code review software? I am aware of Smart Bear's Code Collaborator (albeit a very expensive option) but can anyone recommend any tools that they use?

flag

9 Answers

vote up 8 vote down check

We have started using Atlassian's Crucible. It is a web-based tool that hooks into your repository and allows you to comment and discuss right on the code. We like it because it allows our peer review process to be as light-weight or process strict as we want. Plus, our developers enjoy using it. It's highly configurable, allowing review before commit or after etc. If you wanted to enforce code reviews, you may have to play around with, for instance, SVN hooks or something similar.

We evaluated Jupiter, an Eclipse plug-in - and I have used peer review software for ClearCase/ClearQuest before. Neither were particularly impressive, though I did like that with ClearCase/ClearQuest you had a mandatory pre-commit phase where code was pre-submitted but had to pass code review before it could be submitted to the central repository. This does take quite a lot of configuration though.

For something really lightweight, you could submit text file reviews into your repository with line numbers to issues etc. Place them in a review specific folder and keep the review iteration going until all issues are dealt with.

Crucible makes a lot of sense if you have invested in some other Atlassian products - especially JIRA & Fisheye - then you have a lot of power to integrate reviews with your live issues, source control commits and your continuous builds - giving you a lot of pertinent information on all changes made to your source - allowing you to control change risk in your platform.

Hope this helps!

link|flag
1  
Plus it has a badass name! – Simucal Jan 20 at 0:27
vote up 4 vote down

In the world of free tools, VMware has open sourced their internal Django-based tool, Review Board.

If you don't have any tools that you need to integrate with, this could be a simple option. In the .NET world, if you want developers to prepare diffs for review, you can turn the post-review python script into an executable with py2exe.

link|flag
And I just found a much better thread about this: stackoverflow.com/questions/131153/… – Dan Fitch Jan 19 at 18:15
+1. I've used ReviewBoard extensively at work and it was very nice. – Nick Presta Oct 5 at 14:44
vote up 3 vote down

We use C#'s #warning and #error markers to mark code that needs work. The beauty of this is that the messages stay visible until they're dealt with.

Sometimes low-tech tools work well ... =)

link|flag
vote up 2 vote down

CodeStriker @ http://codestriker.sourceforge.net/ is free

link|flag
vote up 2 vote down

We use reviewboard where we are. It's lightweight and, most importantly, free. However, it's a little fussy when it comes to adding .diff files. If you're using tortoise SVN or similar you'll need to make sure you make your .diff files from the SVN server and not your working copy. A small thing, but it'll barf otherwise.

The only other limitation of reviewboard is big diffs. If you're checking in a brand new project and it's a massive diff. You'll normally find that the python doesn't have enough balls to run it properly. Python will use all the system memory that it needs. Perhaps it's our setup here, but it's very frustrating at times.

But it is free and very fully featured and has saved us from having egg on our face a few times.

link|flag
vote up 1 vote down

Have you looked at Crucible? It's excellent, but again expensive.

link|flag
vote up 1 vote down

Ran across this in Google the other day: PeerReviewPlugin for Trac

link|flag
vote up 1 vote down

If you are using .NET, have you taken a look at Spectare from Big Fish Solutions?

http://www.bigfishsolutions.biz

link|flag
Forgot to add the link: bigfishsolutions.biz – Paul Apr 8 at 12:27
vote up -1 vote down

How about tools such as Ounce Labs?

link|flag
I wasn't the downvote, but the tool you linked to is more of a security bug scanner than a code review support platform. – Novelocrat Oct 5 at 14:42
I wasn't the downvoter, but it doesn't look like Ounce Labs is relevant to the notion of peer review. – Beska Oct 5 at 14:42
Wow. That was a pretty amazingly close crossover of simulcomment. – Beska Oct 5 at 14:43

Your Answer

Get an OpenID
or

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