An error occurred fetching the project authors.
- 13 Oct, 2020 1 commit
-
-
taiyoslime authored
Co-Authored-By:
n4o847 <22975590+n4o847@users.noreply.github.com> Co-Authored-By:
smallkirby <ssmallkirby@gmail.com>
-
- 12 Oct, 2020 1 commit
-
-
dearblue authored
* The `Fixnum` constant is now an alias for the `Integer` class. * Remove `struct mrb_state::fixnum_class` member. If necessary, use `struct mrb_state::integer_class` instead.
-
- 17 Jul, 2019 2 commits
-
-
KOBAYASHI Shuji authored
Before this patch: $ bin/mruby -e 'p (2...4.0).min' #=> TypeError After this patch (same as CRuby and without `mruby-range-ext`): $ bin/mruby -e 'p (2...4.0).min' #=> 2
-
KOBAYASHI Shuji authored
-
- 09 Jul, 2019 2 commits
-
-
Ryan Lopopolo authored
-
Ryan Lopopolo authored
If no block is given and the Range has Fixnum or Float endpoints, do not iterate with each and instead compare the endpoints directly. This implementation passes all of the applicable specs from Ruby Spec.
-
- 19 Nov, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
The ISO standard does not include implicit type conversion using `to_int`. This implicit conversion often causes vulnerability. There will be no more attacks like #4120. In addition, we have added internal convenience method `__to_int` which does type check and conversion (from floats).
-
- 22 Nov, 2016 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 21 Nov, 2016 1 commit
-
-
ksss authored
Range#first shouldn't call `Range#to_a` on infinity range.
-