method

coerce

rails latest stable - Class: ActiveSupport::Duration
coerce(other)
public

No documentation available.

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