| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-16 | Terminate float right shift if shift value is too big. | Yukihiro "Matz" Matsumoto | |
| 2019-05-15 | Merge pull request #4435 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-typo-in-mrbgems-mruby-io-src-file_test.c Fix typo in `mrbgems/mruby-io/src/file_test.c` [ci skip] | |||
| 2019-05-15 | Do not overwrite `conf.cc.defines`. | Yukihiro "Matz" Matsumoto | |
| 2019-05-15 | Fix | Ukrainskiy Sergey | |
| 2019-05-15 | Fix dependencies | Ukrainskiy Sergey | |
| 2019-05-15 | Basic implementation of Complex and Rational classes | Ukrainskiy Sergey | |
| 2019-05-15 | Small refactoring | Ukrainskiy Sergey | |
| 2019-05-15 | Initial suffix support | Ukrainskiy Sergey | |
| 2019-05-15 | Fix typo in `mrbgems/mruby-io/src/file_test.c` [ci skip] | KOBAYASHI Shuji | |
| 2019-05-15 | Merge pull request #4400 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-name-assignment-to-frozen-anonymous-class-module Fix name assignment to frozen anonymous class/module | |||
| 2019-05-15 | Add Enumerator support to `String#each_byte`. | Yukihiro "Matz" Matsumoto | |
| `String#each_byte` is not defined in ISO Ruby but it is implemented in the core mruby because it's useful. | |||
| 2019-05-15 | Merge pull request #4434 from shuujii/refine-Time-to_s-inspect | Yukihiro "Matz" Matsumoto | |
| Refine `Time#(to_s|inspect)` | |||
| 2019-05-15 | Remove `String#=~` and `String#match` that requires `Regexp`. | Yukihiro "Matz" Matsumoto | |
| 2019-05-14 | Refine `Time#(to_s|inspect)` | KOBAYASHI Shuji | |
| For the following reasons: - Ruby compatibility. - Add UTC offset (time zone informations was not included by #4433). - More readable. Example: Before this patch: p Time.gm(2003,4,5,6,7,8,9) #=> Sat Apr 5 06:07:08 2003 p Time.local(2013,10,28,16,27,48) #=> Mon Oct 28 16:27:48 2013 After this patch: p Time.gm(2003,4,5,6,7,8,9) #=> 2003-04-05 06:07:08 UTC p Time.local(2013,10,28,16,27,48) #=> 2013-10-28 16:27:48 +0900 Implementation: I use `strftime(3)` because UTC offset can be added and program size become smaller than the other implementations (using `sprintf(3)`, self conversion etc) in my environment. | |||
| 2019-05-14 | Merge pull request #4433 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-Time-asctime-ctime-according-to-ISO-Ruby Fix `Time#(asctime|ctime)` according to ISO Ruby | |||
| 2019-05-13 | Fix `Time#(asctime|ctime)` according to ISO Ruby | KOBAYASHI Shuji | |
| - A leading charactor for day is space. - Time zone does not included. Before this patch: Time.gm(1982,3,4,5,6,7).asctime #=> "Thu Mar 04 05:06:07 UTC 1982" After this patch: Time.gm(1982,3,4,5,6,7).asctime #=> "Thu Mar 4 05:06:07 1982" | |||
| 2019-05-13 | Merge pull request #4432 from shuujii/fix-missing-assertions-in-mruby-time-test | Yukihiro "Matz" Matsumoto | |
| Fix missing assertions in `mruby-time` test | |||
| 2019-05-12 | Fix missing assertions in `mruby-time` test | KOBAYASHI Shuji | |
| 2019-05-12 | Merge pull request #4431 from shuujii/use-mrb_ensure_string_type-in-mrb_to_str | Yukihiro "Matz" Matsumoto | |
| Use `mrb_ensure_string_type` in `mrb_to_str` | |||
| 2019-05-11 | Use `mrb_ensure_string_type` in `mrb_to_str` | KOBAYASHI Shuji | |
| 2019-05-11 | Merge pull request #4430 from bshastry/ossfuzz | Yukihiro "Matz" Matsumoto | |
| Update ossfuzz options | |||
| 2019-05-11 | Merge pull request #4429 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/move-mrb_gc_arena_restore-into-loop-in-mrb_file_s_chmod Move `mrb_gc_arena_restore` to inside the loop in `mrb_file_s_chmod` | |||
| 2019-05-10 | Update ossfuzz options | Bhargava Shastry | |
| 2019-05-10 | Move `mrb_gc_arena_restore` to inside the loop in `mrb_file_s_chmod` | KOBAYASHI Shuji | |
| 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 | |
