| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-10-12 | Reorganize `Integer` system. | Yukihiro "Matz" Matsumoto | |
| - Integrate `Fixnum` and `Integer` - Remove `Integral` - `int / int -> int` - Replace `mrb_fixnum()` to `mrb_int()` - Replace `mrb_fixnum_value()` to `mrb_int_value()`. - Use `mrb_integer_p()` instead of `mrb_fixnum_p()` | |||
| 2019-07-07 | Fix `Numeric#step` to infinity; ref. #4555 | KOBAYASHI Shuji | |
| 2019-01-16 | Avoid runtime evaluation for `MRB_WITHOUT_FLOAT` | KOBAYASHI Shuji | |
| 2019-01-15 | Fix coercing for first step counter in `Numeric#step` | KOBAYASHI Shuji | |
| Before: a=[]; 7.step(4, -3.0) { |c| a << c }; p a #=> [7, 4.0] After / Ruby: a=[]; 7.step(4, -3.0) { |c| a << c }; p a #=> [7.0, 4.0] | |||
| 2019-01-03 | Remove `Kernel#class_defined?` which is not available in CRuby; #3829 | Yukihiro "Matz" Matsumoto | |
| 2017-10-11 | Add MRB_WITHOUT_FLOAT | YAMAMOTO Masaya | |
| 2017-07-30 | Improved speed of enumeration methods | Christopher Aue | |
| 2017-01-20 | Integral#step without arg should loop forever as CRuby does. | Yukihiro "Matz" Matsumoto | |
| 2016-11-23 | Implement Float shift methods in C | Yukihiro "Matz" Matsumoto | |
| 2015-09-02 | Float << and >> should be more compatible to Fixnum | Yukihiro "Matz" Matsumoto | |
| 2015-08-21 | numeric.rb: refactor code (Avoid using {...} for multi-line blocks, ↵ | go.kikuta | |
| Surrounding space missing in default value assignment) | |||
| 2015-05-29 | update mrblib/*.rb files to conform (some of) Rubocop checks | Yukihiro "Matz" Matsumoto | |
| 2014-11-26 | Fix: Numeric#step infinite loop. | TOMITA Masahiro | |
| 2014-04-03 | downto, upto, step to return Enumerator | Yukihiro "Matz" Matsumoto | |
| 2014-03-14 | mruby-enumerator: move definitions in core_mod.rb to mrblib core | Yukihiro "Matz" Matsumoto | |
| 2014-03-04 | Fix Float#divmod. | Tomoyuki Sahara | |
| 2013-10-23 | modify upto/downto for compatibility | Yukihiro "Matz" Matsumoto | |
| 2013-10-22 | move some methods to make floats and integers compatible [mruby special] | Yukihiro "Matz" Matsumoto | |
| 2013-10-22 | implement some Numeric methods in Ruby | Yukihiro "Matz" Matsumoto | |
| 2013-10-21 | implement Integer#succ in Ruby | Yukihiro "Matz" Matsumoto | |
| 2013-03-31 | Move Integer.{floor,ceil,round,truncate} to mrblib/. For maintainability. | Masaki Muranaka | |
| 2012-09-15 | Integer#step added | Yukihiro Matsumoto | |
| 2012-09-15 | Numeric#{upto,downto}: limit may not be an integer | Yukihiro Matsumoto | |
| 2012-05-06 | Modify documentation of Numeric | Daniel Bovensiepen | |
| 2012-05-01 | Add some more documentation for Integer | Daniel Bovensiepen | |
| 2012-04-20 | add mruby sources | mimaki | |
