- 09 Dec, 2019 7 commits
-
-
dearblue authored
It is writing side by side with the original authors.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Now identifiers like `_1abc` are allowed.
-
Yukihiro "Matz" Matsumoto authored
-
Ukrainskiy Sergey authored
-
Yukihiro "Matz" Matsumoto authored
Fix keyword arguments not be obtained with `mrb_get_args()`; Fix #4754
-
- 08 Dec, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix the error message of `Kernel#Float`
-
KOBAYASHI Shuji authored
#### Before this patch: ``` $ bin/mruby -e 'Float("1_a")' -e:1: invalid string for float(a) (ArgumentError) ``` #### After this patch: ``` $ bin/mruby -e 'Float("1_a")' -e:1: invalid string for float("1_a") (ArgumentError) ```
-
Yukihiro "Matz" Matsumoto authored
Add tests to `Math`
-
- 07 Dec, 2019 2 commits
-
-
dearblue authored
If ":" is after "|" and there is no "?" or "*", the keyword argument could not be obtained and it was not initialized with `undef`. For example: "|oo:"
-
KOBAYASHI Shuji authored
-
- 05 Dec, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Auto detect `MRB_TIME_T_UINT`
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Refine `mrb_alloca()`
-
- 04 Dec, 2019 1 commit
-
-
KOBAYASHI Shuji authored
* The allocated memory is guaranteed to be aligned for any data type (it was not guaranteed when string type is embed). * Make allocation size exactly specified size (does not allocate space for a null byte).
-
- 03 Dec, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Silence Clang warning with `MRB_INT64` and `MRB_32BIT` in `time.c`
-
KOBAYASHI Shuji authored
Silence the following warnings: ``` /mruby/mrbgems/mruby-time/src/time.c:871:15: warning: result of comparison of constant 9223372036854775807 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare] if (tm->sec > MRB_INT_MAX || tm->sec < MRB_INT_MIN) { ~~~~~~~ ^ ~~~~~~~~~~~ /mruby/mrbgems/mruby-time/src/time.c:871:40: warning: result of comparison of constant -9223372036854775808 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare] if (tm->sec > MRB_INT_MAX || tm->sec < MRB_INT_MIN) { ~~~~~~~ ^ ~~~~~~~~~~~ /mruby/mrbgems/mruby-time/src/time.c:887:16: warning: result of comparison of constant 9223372036854775807 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare] if (tm->usec > MRB_INT_MAX || tm->usec < MRB_INT_MIN) { ~~~~~~~~ ^ ~~~~~~~~~~~ /mruby/mrbgems/mruby-time/src/time.c:887:42: warning: result of comparison of constant -9223372036854775808 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare] if (tm->usec > MRB_INT_MAX || tm->usec < MRB_INT_MIN) { ~~~~~~~~ ^ ~~~~~~~~~~~ ```
-
Yukihiro "Matz" Matsumoto authored
Silence Clang warning with `MRB_INT32` and `MRB_64BIT` in `time.c`
-
- 02 Dec, 2019 2 commits
-
-
KOBAYASHI Shuji authored
Silence the following warning: ``` /mruby/mrbgems/mruby-time/src/time.c:258:60: warning: result of comparison of constant -9223372036854775808 with expression of type 'mrb_int' (aka 'int') is always false [-Wtautological-constant-out-of-range-compare] if ((mrb_time_int)i > MRB_TIME_MAX || MRB_TIME_MIN > i) { ~~~~~~~~~~~~ ^ ~ ```
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #4848 from shuujii/fix-MRB_FIXNUM_SHIFT-with-MRB_WORD_BOXING-MRB_INT32-and-MRB_64BIT Fix `MRB_FIXNUM_SHIFT` with `MRB_WORD_BOXING`, `MRB_INT32` and `MRB_64BIT`
-
- 01 Dec, 2019 1 commit
-
-
KOBAYASHI Shuji authored
### Example ```ruby # example.rb max32 = 2**30 - 1 + 2**30 min32 = -max32-1 [max32, max32+1, min32, min32-1].each{|n| p [n, n.class]} ``` #### Before this patch: ``` $ bin/mruby example.rb [2147483647, Float] [2147483648, Float] [-2147483648, Float] [-2147483649, Float] ``` #### After this patch: ``` $ bin/mruby example.rb [2147483647, Fixnum] [2147483648, Float] [-2147483648, Fixnum] [-2147483649, Float] ```
-
- 30 Nov, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Quit `mruby -v` immediately if no program is given for Ruby compatibility
-
KOBAYASHI Shuji authored
-
- 29 Nov, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix `mruby --verbose` (regression by #4827)
-
KOBAYASHI Shuji authored
#### Before this patch: ``` $ bin/mruby --verbose -e 'p 1' bin/mruby: Cannot open program file: --verbose ``` #### After this patch: ``` $ bin/mruby --verbose -e 'p 1' 00001 NODE_SCOPE: (snip) irep 0x7fe97041df30 nregs=4 nlocals=1 pools=0 syms=1 reps=0 iseq=11 file: -e 1 000 OP_LOADSELF R1 (snip) 1 ```
-
Yukihiro "Matz" Matsumoto authored
Change the URL of `mruby.org` [ci skip]
-
- 28 Nov, 2019 1 commit
-
-
KOBAYASHI Shuji authored
- `http` -> `https` - Remove `www.`
-
- 27 Nov, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Support `--` (end of options) to `mruby` command
-
KOBAYASHI Shuji authored
#### Before this patch: ``` $ bin/mruby -e 'p ARGV' -- -x bin/mruby: invalid option -- (-h will show valid options) ``` #### After this patch: ``` $ bin/mruby -e 'p ARGV' -- -x ["-x"] ```
-
Yukihiro "Matz" Matsumoto authored
Add assertion to `RVALUE` size
-
- 25 Nov, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Rename `BITSIZE` to `BIT` and `BIT` to `BIT_POS` for consistency
-
Yukihiro "Matz" Matsumoto authored
Fix `ARGV` value in `mruby` command (regression by #4827)
-
KOBAYASHI Shuji authored
#### Before this patch: ``` $ bin/mruby -e 'p ARGV' a b ["bin/mruby", "-e", "p ARGV", "a", "b"] ``` #### After this patch: ``` $ bin/mruby -e 'p ARGV' a b ["a", "b"] ```
-
Yukihiro "Matz" Matsumoto authored
Support short options concatenation to `mruby` command
-
- 24 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Remove unused methods of `MRubyIOTestUtil`
-
KOBAYASHI Shuji authored
-
- 23 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use proper `PEEK` macro for `OP_EPUSH` in `patch_irep`; fix #4833
-
KOBAYASHI Shuji authored
The bit width terminology is unified to `BIT` according to `MRB_INT_BIT` and `CHAR_BIT`. Also the bit position terminology is unified to `BIT_POS`.
-