method
coerce
v6.1.7.7 -
Show latest stable
- Class:
ActiveSupport::Duration
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