6
votes
Best ruby idiom for “nil or zero”
You can use the Object.nil? to test for nil specifically (and not get caught up between false and nil). You can monkey-patch a method into Object as well.
class Object
def nil …
1
vote
Sort a list of objects by using their attributes in Ruby
Let's assume that your basket is an Array or a subclass thereof.
The Fast Way
Enumerable.sort …
