Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Rationalクラス > coerce
coerce(other) -> Array
[permalink][rdoc]自身と other が同じクラスになるよう、自身か other を変換し [other, self] という 配列にして返します。
Rational(1).coerce(2) # => [(2/1), (1/1)]
Rational(1).coerce(2.2) # => [2.2, 1.0]