| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | 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 | 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 | symbol.c: remove `mrb_sym_static_p()` function that no one use. | Yukihiro "Matz" Matsumoto | |
| 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 | |
| 2021-04-28 | string.c: add a new method `String#center`. | Yukihiro "Matz" Matsumoto | |
| 2021-04-28 | string.{c,rb}: fix type of return values from some methods as Ruby3.0 | Yukihiro "Matz" Matsumoto | |
| When the receiver is the instance of subclass of `String`. - `String#each_char` - `String#each_line` - `String#partition` | |||
| 2021-04-28 | doc/opcode.md: stop reversed link syntax check from markdownlint. | Yukihiro "Matz" Matsumoto | |
| 2021-04-28 | io.rb: reimplement `IO#each_char`. | Yukihiro "Matz" Matsumoto | |
| It used to be an alias to `IO#each_byte` but those methods should have behave differently. | |||
| 2021-04-28 | array.rb: `Array#uniq` to return always `Array`. | Yukihiro "Matz" Matsumoto | |
| Even called for subclass of `Array`, according to new Ruby3.0 behavior. Other methods of `Array` behave as Ruby3.0 from the first hand. | |||
| 2021-04-27 | array.c: update `Array#shift` to take optional argument; close #5428 | Yukihiro "Matz" Matsumoto | |
| 2021-04-26 | Merge pull request #5425 from dearblue/exc_to_s | Yukihiro "Matz" Matsumoto | |
| Fix symbol leak in `exc_to_s()` | |||
| 2021-04-26 | mruby.c: specify file names for libraries set by `-r`; fix #5427 | Yukihiro "Matz" Matsumoto | |
| 2021-04-26 | backtrace.c: skip innermost frame only when the method is in C; #5394 | Yukihiro "Matz" Matsumoto | |
| 2021-04-26 | Merge pull request #5424 from dearblue/new_iseq | Yukihiro "Matz" Matsumoto | |
| Fix annotations for inline iseq of `Class.new` [ci skip] | |||
| 2021-04-26 | Merge pull request #5423 from dearblue/gc-red | Yukihiro "Matz" Matsumoto | |
| Introduce `MRB_GC_RED` | |||
| 2021-04-26 | build_config/no-float.rb: unify two build configurations; #5421 | Yukihiro "Matz" Matsumoto | |
| - stop cross building - add more gems for tests - add `bintest` | |||
| 2021-04-25 | Merge pull request #5422 from dearblue/binding1 | Yukihiro "Matz" Matsumoto | |
| Avoid ill-advised `goto` | |||
| 2021-04-25 | Fix symbol leak in `exc_to_s()` | dearblue | |
| 2021-04-24 | Fix annotations for inline iseq of `Class.new` [ci skip] | dearblue | |
| 2021-04-24 | Skip tests that use `Float` inside; ref #5421 | Yukihiro "Matz" Matsumoto | |
