- 02 Jan, 2021 7 commits
-
-
Yukihiro "Matz" Matsumoto authored
Negative integer `>-65535` had wrong value, e,g, `p(-40550)` printed `4294926746` since Nov. 2020, sigh.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Also avoid using `uint64_t`.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix regression for squiggly heredocs
-
Yukihiro "Matz" Matsumoto authored
Refine "wrong number of arguments" message in `mrb_get_args`
-
KOBAYASHI Shuji authored
#### Before this patch: ```ruby __send__ #=> wrong number of arguments {}.default(1,2) #=> wrong number of arguments ``` #### After this patch: ```ruby __send__ #=> wrong number of arguments (given 0, expected 1+) {}.default(1,2) #=> wrong number of arguments (given 2, expected 0..1) ```
-
- 01 Jan, 2021 2 commits
- 31 Dec, 2020 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Update copyright year for 2021
-
Yukihiro "Matz" Matsumoto authored
Removed unusable `GC.test`
-
- 29 Dec, 2020 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Refine error message from `mrb_get_arg1`
-
KOBAYASHI Shuji authored
#### Before this patch: ```console $ bin/mruby -e '{}.key?' trace (most recent call last): -e:1: wrong number of arguments (ArgumentError) ``` #### After this patch: ```console $ bin/mruby -e '{}.key?' trace (most recent call last): -e:1: wrong number of arguments (given 0, expected 1) (ArgumentError) ```
-
Yukihiro "Matz" Matsumoto authored
Fix mixed indentation and escaped tabs in squiggly heredocs
-
Seeker authored
-
- 28 Dec, 2020 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix for empty lines in squiggly heredocs
-
Seeker authored
-
Yukihiro "Matz" Matsumoto authored
Add `Hash#except` [Ruby 3.0]
-
Seeker authored
-
- 27 Dec, 2020 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Add support for squiggly heredocs
-
Seeker authored
-
Seeker authored
-
Seeker authored
-
- 26 Dec, 2020 1 commit
-
-
John Bampton authored
-
- 25 Dec, 2020 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Improves out of memory messages for `eval`
-
dearblue authored
The comment says that if `mrb_parse_nstring()` returns `NULL`, it is only out of memory. I'm worried about compatibility if I set the exception class to `NoMemoryError`, so it's still `RuntimeError`.
-
- 24 Dec, 2020 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 23 Dec, 2020 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Create CODEOWNERS file
-
Yukihiro "Matz" Matsumoto authored
Add example for cross-compiling to Nintendo GameBoyAdvance
-
Gwen Boatrite authored
-
Yukihiro "Matz" Matsumoto authored
-
- 22 Dec, 2020 1 commit
-
-
John Bampton authored
- You can use a CODEOWNERS file to define individuals or teams that are responsible for code in a repository. - Code owners are automatically requested for review when someone opens a pull request that modifies code that they own. Code owners are not automatically requested to review draft pull requests. - https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/about-code-owners - This creates a bit more automation so that after you merge this PR, next time someone submits a PR @matz will be automatically assigned as the PR reviewer as CODEOWNER - CODEOWNERS can even be assigned directories or file types
-
- 21 Dec, 2020 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
refactor: fix Rake link and fix missing HTTPS on links
-
John Bampton authored
-
Yukihiro "Matz" Matsumoto authored
Fix typo in `.github/workflows/build.yml` [skip travis][skip appveyor]
-
KOBAYASHI Shuji authored
-
- 20 Dec, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Use `git ls-files` instead of `find` in `spell-checker.yml` [ci skip]
-