| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-05-16 | numeric.h: reduce conditional compilation branch on `MRB_NO_FLOAT`. | Yukihiro "Matz" Matsumoto | |
| 2021-05-15 | AUTHORS: update authors information as of 2021-05-15. | Yukihiro "Matz" Matsumoto | |
| 2021-05-15 | mruby-array-ext/array.c: implement `Array#rotate` in C. | Yukihiro "Matz" Matsumoto | |
| The Ruby version of `Array#rotate!` generated a rotated array and replaced the receiver, but the C version rotates the receiver array in-place. So the performance is improved a lot both in speed and memory consumption. Look for the comments in `array.c` for the in-place rotating algorithm, if you are interested. | |||
| 2021-05-14 | mruby-array-ext/array.c: implement `Array#compact` in C. | Yukihiro "Matz" Matsumoto | |
| 2021-05-14 | array.rb: replace `can't` with `cannot`. | Yukihiro "Matz" Matsumoto | |
| To avoid editor coloring failures. | |||
| 2021-05-14 | range.c: implement (part of) `Range#to_a` in C. | Yukihiro "Matz" Matsumoto | |
| Mostly for performance reason. | |||
| 2021-05-14 | range.c: refactor conditional compilation code. | Yukihiro "Matz" Matsumoto | |
| So that auto indentation works. | |||
| 2021-05-14 | range.c: rename `RANGE_INITIALIZED_MASK` to `RANGE_INITIALIZED_FLAG`. | Yukihiro "Matz" Matsumoto | |
| 2021-05-13 | Update `mrb_bool` definition; close #2385 | Yukihiro "Matz" Matsumoto | |
| - move `TRUE/FALSE` definition from `mrbconf.h` (not configurable) - use C/C++ definition of boolean type for `mrb_bool` The fix is originally written by @take-cheeze. | |||
| 2021-05-13 | string.c: remove unnecessary branch in the internal method. | Yukihiro "Matz" Matsumoto | |
| 2021-05-13 | Simplify module inclusion for `Array`, `Hash` and `Range`. | Yukihiro "Matz" Matsumoto | |
| 2021-05-13 | Merge pull request #5451 from ↵ | Yukihiro "Matz" Matsumoto | |
| mruby/dependabot/github_actions/github/super-linter-3.17.1 build(deps): bump github/super-linter from 3.17.0 to 3.17.1 | |||
| 2021-05-13 | range.c: avoid use of `mrb_fixnum_p`. | Yukihiro "Matz" Matsumoto | |
| `mrb_int` may not fit in `fixnum` (inline integer). | |||
| 2021-05-13 | mruby-test: `MRB_INT_MAX` etc. may not fit in `Fixnum` (inline int). | Yukihiro "Matz" Matsumoto | |
| 2021-05-13 | build(deps): bump github/super-linter from 3.17.0 to 3.17.1 | dependabot[bot] | |
| Bumps [github/super-linter](https://github.com/github/super-linter) from 3.17.0 to 3.17.1. - [Release notes](https://github.com/github/super-linter/releases) - [Commits](https://github.com/github/super-linter/compare/v3.17.0...v3.17.1) Signed-off-by: dependabot[bot] <[email protected]> | |||
| 2021-05-13 | backtrace.c: stop skipping frame with file/line information. | Yukihiro "Matz" Matsumoto | |
| Instead, copy them from the outer frame as CRuby does. | |||
| 2021-05-12 | Merge pull request #5450 from ↵ | Yukihiro "Matz" Matsumoto | |
| mruby/dependabot/github_actions/actions/checkout-2.3.4 build(deps): bump actions/checkout from 2 to 2.3.4 | |||
| 2021-05-12 | build(deps): bump actions/checkout from 2 to 2.3.4 | dependabot[bot] | |
| Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4) Signed-off-by: dependabot[bot] <[email protected]> | |||
| 2021-05-12 | range.rb: add `Range#entries` as an alias to `Range#to_a`. | Yukihiro "Matz" Matsumoto | |
| 2021-05-12 | array.rb: add `Array#entries` as an alias to `Array#to_a`. | Yukihiro "Matz" Matsumoto | |
| The performance of `Enumerable#entries` are significantly slower than `Array#to_a`. | |||
| 2021-05-11 | Remove the obsolete term `Fixnum`. | Yukihiro "Matz" Matsumoto | |
| Except for compatibility code. | |||
| 2021-05-10 | doc/limitation.md: update the limitation. | Yukihiro "Matz" Matsumoto | |
| - `puts` behavior changed as CRuby - fix wrong behavior in re-raising in `rescue` | |||
| 2021-05-08 | time.c: Windows API provides `clock_gettime`. | Yukihiro "Matz" Matsumoto | |
| `gettimeofday` emulation needed no longer. | |||
| 2021-05-07 | Add `.git-blame-ignore-revs` file to ignore whitespace fixes. | Yukihiro "Matz" Matsumoto | |
| 2021-05-07 | Merge pull request #5447 from dearblue/tab | Yukihiro "Matz" Matsumoto | |
| Extend the tab with 8 whitespace | |||
| 2021-05-07 | Merge pull request #5443 from jbampton/order-editorconfig-properties | Yukihiro "Matz" Matsumoto | |
| Order the EditorConfig properties | |||
| 2021-05-06 | symbol.c: add `Symbol#name` method | Yukihiro "Matz" Matsumoto | |
| `Symbol#name` is similar to `#to_s` but returns a frozen string. | |||
| 2021-05-06 | symbol.c: rename `sym_name` to `sym_cstr`. | Yukihiro "Matz" Matsumoto | |
| 2021-05-05 | Extend the tab with 8 whitespace | dearblue | |
| This work was done as follows: - check: `git grep $'\011' -- :^oss-fuzz` - convert: `ruby -pi -e 'nil while $_.sub!(/^(.*?)\t/) { $1 + " " * (8 - $1.size % 8) }'` The `doc/guide/{compile,mrbgems}.md` file adds and removes whitespace to make the directory tree look the same. In `mrbgems/mruby-socket/src/socket.c`, there is a part where the indent is changed from 4 to 2 at the same time as the tab is changed. | |||
| 2021-05-05 | Merge pull request #5446 from ↵ | Yukihiro "Matz" Matsumoto | |
| mruby/dependabot/github_actions/github/super-linter-v3.17.0 build(deps): bump github/super-linter from v3 to v3.17.0 | |||
| 2021-05-05 | build(deps): bump github/super-linter from v3 to v3.17.0 | dependabot[bot] | |
| Bumps [github/super-linter](https://github.com/github/super-linter) from v3 to v3.17.0. - [Release notes](https://github.com/github/super-linter/releases) - [Commits](https://github.com/github/super-linter/compare/v3...28cfebb84fd6dd9e8773b5efe5ac0f8f3714f228) Signed-off-by: dependabot[bot] <[email protected]> | |||
| 2021-05-05 | Merge pull request #5442 from dearblue/mruby-pack | Yukihiro "Matz" Matsumoto | |
| Fix documents for `mruby-io` | |||
| 2021-05-05 | Merge pull request #5441 from dearblue/mruby-sleep | Yukihiro "Matz" Matsumoto | |
| Update gem spec for `mruby-sleep` | |||
| 2021-05-04 | Add documentation on spell checking with misspell | John Bampton | |
| 2021-05-04 | Merge pull request #5440 from jbampton/fix-whitespace-in-src-symbol-c | Yukihiro "Matz" Matsumoto | |
| Fix whitespace in `src/symbol.c` | |||
| 2021-05-04 | Order the EditorConfig properties | John Bampton | |
| 2021-05-03 | Fix documents for `mruby-io` | dearblue | |
| 2021-05-03 | Update gem spec for `mruby-sleep` | dearblue | |
| To align the spec like any other core mrbgems: - Delete `spec.version` - Set `spec.summary` | |||
| 2021-05-03 | Fix whitespace in `src/symbol.c` | John Bampton | |
| 2021-05-03 | symbol.c: remove `id2name` reference from documents. | Yukihiro "Matz" Matsumoto | |
| 2021-05-03 | symbol.c: remove `Symbol#id2sym`. | Yukihiro "Matz" Matsumoto | |
| In the ancient Ruby, symbols are represented by integers. In that era, to get string representation from integers, we used `Integer#id2sym` method. Later, `Symbol` was introduced, and `id2sym` was used for compatibility. Today, no one uses `id2sym` any longer. It is described in ISO 30170:2012 standard but I consider it as a mistake. | |||
| 2021-05-02 | Merge pull request #5439 from dearblue/opcode.md | Yukihiro "Matz" Matsumoto | |
| Enclose the table contents of `opcode.md` as code | |||
| 2021-05-02 | array.c: `mrb_ary_shift_m` should be `static`. | Yukihiro "Matz" Matsumoto | |
| 2021-05-02 | Enclose the table contents of `opcode.md` as code | dearblue | |
| 2021-05-02 | Rename mrbgems/mruby-inline-struct with mrbgems/mruby-test-inline-struct | dearblue | |
| This gem contains only tests. | |||
| 2021-05-02 | symbol.c: remove `mrb_sym_static_p()` function that no one use. | Yukihiro "Matz" Matsumoto | |
| 2021-05-02 | Run the task only once when `parse.y` is updated | dearblue | |
| Previously, the task was executed as many times as there were targets, including `mruby-compiler`. ```console % rm mrbgems/mruby-compiler/core/y.tab.c % rake `pwd`/mrbgems/mruby-compiler/core/y.tab.c YACC mrbgems/mruby-compiler/core/parse.y -> mrbgems/mruby-compiler/core/y.tab.c YACC mrbgems/mruby-compiler/core/parse.y -> mrbgems/mruby-compiler/core/y.tab.c ``` | |||
| 2021-05-01 | io.rb,print.rb: `puts` to expand array arguments. | Yukihiro "Matz" Matsumoto | |
| As CRuby behaves. | |||
| 2021-04-29 | Merge pull request #5432 from shuujii/fix-typo-in-mrbgems-mruby-io-mrblib-io.rb | Yukihiro "Matz" Matsumoto | |
| Fix typo in `mrbgems/mruby-io/mrblib/io.rb`; ref cb55e7eca | |||
| 2021-04-29 | Fix typo in `mrbgems/mruby-io/mrblib/io.rb`; ref cb55e7eca | KOBAYASHI Shuji | |
