class ActiveSupport::Duration::Scalar

def /(other)

def /(other)
  if Duration === other
    value / other.value
  else
    calculate(:/, other)
  end
end