DEBSOURCES
Skip Quicknav
sources / jruby / 1.7.26-1%2Bdeb9u1 / spec / ruby / fixtures / rational.rb
1234567891011
module RationalSpecs class SubNumeric < Numeric def initialize(value) @value = Rational(value) end def to_r @value end end end