# File lib/runt/daterange.rb, line 28
    def include?(obj)
      return super(obj.min) && super(obj.max) if obj.kind_of? Range
      return super(obj)
    end