method

coerce

coerce(other)
public

No documentation available.

# File activesupport/lib/active_support/duration.rb, line 218
    def coerce(other) #:nodoc:
      case other
      when Scalar
        [other, self]
      when Duration
        [Scalar.new(other.value), self]
      else
        [Scalar.new(other), self]
      end
    end