For the sake of cleaning up my code, I'd really like to see the Enumerable#pluck idea extended to many other methods a-la Symbol#to_proc in Ruby. That way I can write things like...
var checked = someRadioBottons.findAll('checked');
var minimum = myInputs.min('value');
var groups = objects.partition('validated');
This patch allows you to do that, and it even works with methods, so you can do:
var elements = $$('div').findAll('visible');
It works by adding a String#toFunction method, and adding a check for that method to many functions in Enumerable. I know this would clean up some of my code considerably. Not sure if I've missed any methods where it might be useful, but I've included tests for all the methods I've patched.