views:

98

answers:

2

A wee while ago I ended up on a page which hosted several ruby tools, which had 'crazy' names like 'mangler' or 'executor' or something. The tool's job was to modify you production code (at runtime) in order to prove that your tests were precise.

Unfortunately I would now like to find that tool again, but can't remember what it was called. Any ideas?

+4  A: 

Maybe you're thinking of the Flay project and related modules:

http://ruby.sadi.st/Ruby%5FSadist.html

tadman
+8  A: 

I think you're thinking about Heckle, which flips your code to make sure your tests are accurate. Here:

http://seattlerb.rubyforge.org/heckle/

Terry
Sounds like heckle is what you're looking for. Also metric_fu is pretty slick for code quality metrics: http://metric-fu.rubyforge.org/
hgimenez