# File lib/tapkit/control/date_and_time.rb, line 52
                def <=>( other )
                        case other
                        when Date
                                to_date <=> other.to_date
                        else
                                to_date <=> other
                        end
                end