if i make an object sortable using <=> as so:

def <=> anItem
  @date <=> anItem.date
end

and date is nil, it fails.  What's the right way to handle nils in this
scenario?

thanks.