class Time

def plus_with_duration(other) # :nodoc:

:nodoc:
def plus_with_duration(other) # :nodoc:
  if ActiveSupport::Duration === other
    other.since(self)
  else
    plus_without_duration(other)
  end
end