This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
new!(num, den = 1)
public
Implements the constructor. This method does not reduce to lowest terms or check for
division by zero. Therefore #Rational()
should be preferred in normal use.
# File lib/rational.rb, line 93
def Rational.new!(num, den = 1)
new(num, den)
end