Sha256: c190e2f32a5870791143dbf9c5b93deca1dbf3fc49685f4991881e978e68447d
Contents?: true
Size: 263 Bytes
Versions: 1
Compression:
Stored size: 263 Bytes
Contents
module Xi::CoreExt module Fixnum def /(o) super(o.to_r) end end end if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.4') class Fixnum prepend Xi::CoreExt::Fixnum end else class Integer prepend Xi::CoreExt::Fixnum end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xi-lang-0.1.6 | lib/xi/core_ext/fixnum.rb |