aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* * test/ruby/test_refinement.rb (test_inspect): Use Integer instead of Fixnum.akr2016-05-022-3/+8
* string.c: fix bracesnobu2016-05-021-3/+1
* complex.c don't refer rb_cFixnum and rb_cBignum.akr2016-05-012-2/+8
* fix mixed declaration on non UNALIGNED_WORD_ACCESSnaruse2016-05-011-2/+3
* * test/ruby/test_numeric.rb (test_step): Use Integer::FIXNUM_MAX.akr2016-05-012-2/+5
* test_name use Integer instead of Fixnum.akr2016-05-012-1/+5
* test/lib/test/unit/assertions.rb defines assert_fixnum and assert_bignum.akr2016-05-015-23/+42
* Add a cast to avoid signed integer overflow.akr2016-05-012-1/+6
* envutil.rb defines Integer::{FIXNUM_MIN,FIXNUM_MAX}.akr2016-05-017-33/+32
* * 2016-05-02svn2016-05-011-1/+1
* Fix rb_ary_sum for mathnmrkn2016-05-013-4/+28
* * test/logger/test_logdevice.rb (TestLogDevice#test_shifting_period_suffix):usa2016-05-011-1/+0
* * test/lib/test/unit.rb (Options#non_options): fixed wrong regexp.usa2016-05-012-1/+7
* fix for where UNALIGNED_WORD_ACCESS is not allowednaruse2016-05-011-12/+17
* update comments.akr2016-05-013-3/+3
* Fix a test message.akr2016-05-011-1/+1
* * win32/win32.c: drop Win2K support.usa2016-05-012-19/+6
* * cont.c, hash.c, random.c, win32/win32.c: cleanup some Win9x/ME/NT4usa2016-05-015-153/+82
* Use WORDS_BIGENDIANnaruse2016-05-011-3/+3
* [DOC] merge documents for {Integer,Fixnum}#succ.akr2016-05-011-11/+6
* ChangeLog: fix a typo [ci skip]nobu2016-05-011-1/+1
* * string.c (search_nonascii): use nlz on big endian environments.naruse2016-04-303-0/+19
* fix a typo.akr2016-04-301-1/+1
* More optimization for r54854's search_nonasciinaruse2016-04-301-10/+10
* * 2016-05-01svn2016-04-301-2/+2
* revert UNALIGNED_WORD_ACCESS for GCC6naruse2016-04-303-12/+0
* * string.c (search_nonascii): unroll and use ntznaruse2016-04-304-23/+107
* [DOC]akr2016-04-302-27/+1
* Gather Fixnum method definitions.akr2016-04-302-14/+20
* Define Integer#/ instead of Bignum#/.akr2016-04-304-12/+24
* Define Integer#+ instead of Bignum#+.akr2016-04-303-9/+9
* Define Integer#- instead of Bignum#-.akr2016-04-303-9/+9
* Define Integer#* instead of Bignum#*.akr2016-04-303-9/+9
* Define Integer#% instead of Bignum#%.akr2016-04-303-1/+7
* Define Integer#== instead of Bignum#==.akr2016-04-303-3/+24
* Define Integer#> instead of Bignum#>.akr2016-04-304-13/+28
* Define Integer#>= instead of Bignum#>=.akr2016-04-304-13/+28
* * doc/standard_library.rdoc: Remove obsoleted classes and modules.hsbt2016-04-302-3/+4
* Define Integer#< instead of Bignum#<.akr2016-04-304-13/+28
* Define Integer#<= instead of Bignum#<=.akr2016-04-304-13/+29
* Define Integer#GMP_VERSION.akr2016-04-302-0/+5
* Define Integer#-@ instead of Fixnum#-@.akr2016-04-301-1/+1
* Define Integer#remainder instead of Bignum#remainder.akr2016-04-304-11/+45
* {Fixnum,Bignum}#-@ is unified into Integer.akr2016-04-303-12/+12
* {Fixnum,Bignum}#div is unified into Integer.akr2016-04-303-12/+11
* {Fixnum,Bignum}#modulo is unified into Integer.akr2016-04-303-12/+9
* {Fixnum,Bignum}#divmod is unified into Integer.akr2016-04-303-12/+23
* move Fixnum#/ document position.akr2016-04-301-9/+9
* {Fixnum,Bignum}#fdiv is unified into Integer.akr2016-04-303-17/+25
* {Fixnum,Bignum}#** is unified into Integer.akr2016-04-303-18/+29