| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-10 | Update ossfuzz options | Bhargava Shastry | |
| 2019-05-10 | Merge pull request #4428 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/raise-TypeError-if-the-argument-type-is-unsupported-in-mrb_stat0 Raise `TypeError` if the argument type is unsupported in `mrb_stat0` | |||
| 2019-05-10 | Raise `TypeError` if the argument type is unsupported in `mrb_stat0` | KOBAYASHI Shuji | |
| 2019-05-08 | Update `README.md`; mruby is now Ruby 2.x compatible. | Yukihiro "Matz" Matsumoto | |
| 2019-05-08 | Merge pull request #4426 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-mrb_string_value_cstr-in-mrb_str_to_dbl Use `mrb_string_value_cstr` in `mrb_str_to_dbl` | |||
| 2019-05-08 | Use `mrb_string_value_cstr` in `mrb_str_to_dbl` | KOBAYASHI Shuji | |
| 2019-05-08 | Merge pull request #4425 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/refactor-mrb_str_to_cstr-and-mrb_string_value_cstr Refactor `mrb_str_to_cstr` and `mrb_string_value_cstr` | |||
| 2019-05-07 | Refactor `mrb_str_to_cstr` and `mrb_string_value_cstr` | KOBAYASHI Shuji | |
| - Extract null byte check to function. - Avoid string allocation if null byte is included. - Use `str_new` instead of `mrb_str_dup` + `mrb_str_modify` | |||
| 2019-05-07 | Merge pull request #4424 from shuujii/avoid-using-mrb_str_to_cstr-if-possible | Yukihiro "Matz" Matsumoto | |
| Avoid using `mrb_str_to_cstr` if possible | |||
| 2019-05-06 | Avoid using `mrb_str_to_cstr` if possible | KOBAYASHI Shuji | |
| Because it always allocate new string. Replace with the followings: - Use `RSRING_PTR` if string is guaranteed to be null-terminated. - Use `mrb_string_value_cstr` or `mrb_get_args("z")` if return value isn't modified. | |||
| 2019-05-05 | Merge pull request #4423 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-mrb_fixnum_to_str-instead-of-Fixnum-to_s Use `mrb_fixnum_to_str()` instead of `Fixnum#to_s` | |||
| 2019-05-05 | Use `mrb_fixnum_to_str()` instead of `Fixnum#to_s` | KOBAYASHI Shuji | |
| 2019-05-04 | Merge pull request #4179 from bshastry/ossfuzz | Yukihiro "Matz" Matsumoto | |
| ossfuzz: Add simple mruby compile test harness | |||
| 2019-05-04 | Merge pull request #4422 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/check-whether-object-is-immediate-in-mrb_gc_register-unregister Check whether object is immediate in `mrb_gc_(register|unregister)` | |||
| 2019-05-04 | Check whether object is immediate in `mrb_gc_(register|unregister)` | KOBAYASHI Shuji | |
| 2019-05-04 | Merge pull request #4420 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/simplify-conversion-process-for-i-in-mrb_get_args Simplify conversion process for `i` in `mrb_get_args()` | |||
| 2019-05-04 | Merge pull request #4419 from dearblue/fix-always-static | Yukihiro "Matz" Matsumoto | |
| Fix `FLAG_SRC_STATIC` always set in `mrb_read_irep()` with `MRB_USE_CUSTOM_RO_DATA_P` | |||
| 2019-05-04 | Merge pull request #4418 from dearblue/clean-duplicate | Yukihiro "Matz" Matsumoto | |
| Clean duplicate code | |||
| 2019-05-03 | Simplify conversion process for `i` in `mrb_get_args()` | KOBAYASHI Shuji | |
| 2019-05-03 | Fix `FLAG_SRC_STATIC` always set in `mrb_read_irep()` with ↵ | dearblue | |
| `MRB_USE_CUSTOM_RO_DATA_P` | |||
| 2019-05-03 | Clean duplicate code | dearblue | |
| Removed duplicates in the code entered for "Concatenate string literal". | |||
| 2019-05-02 | Merge pull request #4417 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/unify-overflow-error-class-for-conversion-to-integer-to-RangeError Unify overflow error class for conversion to integer to `RangeError` | |||
| 2019-05-02 | Use a normal method instead of a lambda in bintest/mruby; ref #4416 | Yukihiro "Matz" Matsumoto | |
| 2019-05-02 | Fixed include specifier format for `mruby/common.h`. | Yukihiro "Matz" Matsumoto | |
| 2019-05-02 | Merge pull request #4416 from shuujii/small-fix-in-mruby-bin-mruby | Yukihiro "Matz" Matsumoto | |
| Small fix in `mruby-bin-mruby` | |||
| 2019-05-02 | Merge pull request #4415 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-argc-check-in-mrb_str_aref_m Remove unneeded `argc` check in `mrb_str_aref_m()` | |||
| 2019-05-02 | Unify overflow error class for conversion to integer to `RangeError` | KOBAYASHI Shuji | |
| 2019-05-01 | Small fix in `mruby-bin-mruby` | KOBAYASHI Shuji | |
| - Modify some error messages for consistency. - Add test for codegen error. - Use regular expression for error message matching in test. | |||
| 2019-05-01 | Remove unneeded `argc` check in `mrb_str_aref_m()` | KOBAYASHI Shuji | |
| 2019-04-30 | Merge pull request #4414 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/refine-error-message-output-for-mruby-command Refine error message output for `mruby` command | |||
| 2019-04-30 | Refine error message output for `mruby` command | KOBAYASHI Shuji | |
| - Write message to stderr instead of stdout. - Avoid duplicate message output (`SyntaxError`, `ScriptError` etc). - Refine invalid option message. - Suppress redundant usage output. - Fix some incorrect exit code. | |||
| 2019-04-29 | Merge pull request #4413 from shuujii/fix-missing-assertions-in-mruby-io-test | Yukihiro "Matz" Matsumoto | |
| Fix missing assertions in `mruby-io` test | |||
| 2019-04-29 | Merge pull request #4412 from shuujii/refine-the-default-values-of-flunk | Yukihiro "Matz" Matsumoto | |
| Refine the default values of `flunk` | |||
| 2019-04-29 | Refine the default values of `flunk` | KOBAYASHI Shuji | |
| The default message for the second argument should be set to the first argument because only one argument is normally specified. | |||
| 2019-04-29 | Fix missing assertions in `mruby-io` test | KOBAYASHI Shuji | |
| 2019-04-28 | Merge pull request #4411 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/commented-out-Struct.new-removes-existing-constant-test Commented out "Struct.new removes existing constant" test | |||
| 2019-04-28 | Commented out "Struct.new removes existing constant" test | KOBAYASHI Shuji | |
| Because this test is always skipped. | |||
| 2019-04-27 | Merge pull request #4410 from dearblue/update-docs | Yukihiro "Matz" Matsumoto | |
| Update document for `MRB_USE_CUSTOM_RO_DATA_P` and some configurations | |||
| 2019-04-27 | Update document for `MRB_USE_CUSTOM_RO_DATA_P` | dearblue | |
| 2019-04-27 | Update document for any configurations | dearblue | |
| - (Modify) `MRB_INT16` - (Add) `MRB_INT32` - (Modify) `MRB_INT64` - (Add) `MRB_USE_ETEXT_EDATA` - (Add) `MRB_NO_INIT_ARRAY_START - (Add) `MRB_WITHOUT_FLOAT` - (Add) `MRB_METHOD_CACHE` - (Add) `MRB_METHOD_CACHE_SIZE` - (Add) `MRB_METHOD_TABLE_INLINE - (Add) `MRB_ENABLE_ALL_SYMBOLS` | |||
| 2019-04-27 | Merge pull request #4409 from shuujii/remove-duplicated-String-each_char | Yukihiro "Matz" Matsumoto | |
| Remove duplicated `String#each_char` | |||
| 2019-04-27 | Remove duplicated `String#each_char` | KOBAYASHI Shuji | |
| 2019-04-26 | Merge pull request #4408 from dearblue/my-ro_data_p | Yukihiro "Matz" Matsumoto | |
| Add customized `mrb_ro_data_p()` | |||
| 2019-04-26 | Add customized `mrb_ro_data_p()` | dearblue | |
| User definable `mrb_ro_data_p()` functions are available by defining `MRB_USE_CUSTOM_RO_DATA_P`. (Limitation) It can not be defined as an inline function. | |||
| 2019-04-26 | Merge pull request #4405 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/singleton-class-of-frozen-object-should-be-frozen Singleton class of frozen object should be frozen | |||
| 2019-04-25 | Singleton class of frozen object should be frozen | KOBAYASHI Shuji | |
| Before this patch: p (class << Object.new.freeze; self end).frozen? #=> false sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> false After this patch / Ruby: p (class << Object.new.freeze; self end).frozen? #=> true sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> true | |||
| 2019-04-25 | Merge pull request #4402 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-modiying-class-variable-to-frozen-class Fix modiying class variable to frozen class/module | |||
| 2019-04-24 | Fix modiying class variable to frozen class/module | KOBAYASHI Shuji | |
| 2019-04-24 | Reorganize defines related to `MRB_INLINE`; ref #4391 | Yukihiro "Matz" Matsumoto | |
| 2019-04-24 | Remove unnecessary `mrb_regexp_check()` and related functions. | Yukihiro "Matz" Matsumoto | |
