class Date

def minus_with_duration(other) # :nodoc:

:nodoc:
def minus_with_duration(other) # :nodoc:
  if ActiveSupport::Duration === other
    plus_with_duration(-other)
  else
    minus_without_duration(other)
  end
end