| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-11-05 | Merge pull request #4805 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-test-that-depend-on-mruby-enumerator-from-mruby-array-ext Remove test that depend on `mruby-enumerator` from `mruby-array-ext` | |||
| 2019-11-05 | Remove test that depend on `mruby-enumerator` from `mruby-array-ext` | KOBAYASHI Shuji | |
| `Object.const_defined?(:Enumerator)` is always false because `mruby-enumerator` is not specified in `test_dependency`. I don't think this test is necessary. | |||
| 2019-11-05 | Merge pull request #4804 from shuujii/avoid-using-C++-style-comments-in-parse.y | Yukihiro "Matz" Matsumoto | |
| Avoid using C++ style comments (`//`) in `parse.y` [ci skip] | |||
| 2019-11-04 | Avoid using C++ style comments (`//`) in `parse.y` [ci skip] | KOBAYASHI Shuji | |
| 2019-11-03 | Merge pull request #4803 from shuujii/remove-unused-enum-in-mrb_cstr_to_dbl | Yukihiro "Matz" Matsumoto | |
| Remove unused enum in `mrb_cstr_to_dbl` | |||
| 2019-11-03 | Remove unused enum in `mrb_cstr_to_dbl` | KOBAYASHI Shuji | |
| 2019-11-02 | Merge pull request #4802 from shuujii/fix-argument-specs-to-Hash | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Hash` | |||
| 2019-11-02 | Fix argument specs to `Hash` | KOBAYASHI Shuji | |
| 2019-11-02 | Merge pull request #4801 from shuujii/fix-argument-specs-to-File | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `File` | |||
| 2019-11-01 | Fix argument specs to `File` | KOBAYASHI Shuji | |
| 2019-10-31 | Merge pull request #4799 from shuujii/fix-argument-specs-to-Fiber | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Fiber` | |||
| 2019-10-30 | Fix argument specs to `Fiber` | KOBAYASHI Shuji | |
| 2019-10-30 | Fix here-doc inside parens and brackets; fix #4796 | Yukihiro "Matz" Matsumoto | |
| 2019-10-30 | Merge pull request #4798 from mimaki/fix-git-params-for-windows | Yukihiro "Matz" Matsumoto | |
| Fix `git` command parameter for Windows. | |||
| 2019-10-30 | Merge pull request #4797 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-Array-creation-in-Struct-_inspect Remove unneeded `Array` creation in `Struct#_inspect` | |||
| 2019-10-29 | Fix file/directory name parameter for `git` command. | mimaki | |
| 2019-10-29 | Remove unneeded `Array` creation in `Struct#_inspect` | KOBAYASHI Shuji | |
| 2019-10-28 | Merge pull request #4795 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-documents-about-Regexp-argument-from-string Remove documents about `Regexp` argument from `String#{[],[]=}` [ci skip] | |||
| 2019-10-28 | Remove documents about `Regexp` argument from `String#{[],[]=}` [ci skip] | KOBAYASHI Shuji | |
| 2019-10-27 | Merge pull request #4792 from shuujii/refine-String-split-document | Yukihiro "Matz" Matsumoto | |
| Refine `String#split` document | |||
| 2019-10-27 | Refine `String#split` document | KOBAYASHI Shuji | |
| 2019-10-26 | Merge pull request #4791 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/optimize-chars2bytes-with-MRB_UTF8_STRING-to-ASCII-only-string Optimize `chars2bytes` with `MRB_UTF8_STRING` to ASCII only string | |||
| 2019-10-26 | Optimize `chars2bytes` with `MRB_UTF8_STRING` to ASCII only string | KOBAYASHI Shuji | |
| ### Benchmark (with `MRB_UTF8_STRING`) ``` $ mruby -e ' COUNT = 150000 SIZE = 10000 strs = Array.new(COUNT) do s = "a" * SIZE s.size # set `MRB_STR_ASCII` flag s end i = 0 t = Time.now while i < COUNT strs[i][-2..-1] = "" i += 1 end printf "%.2f sec\n", Time.now - t ' 1.10 sec # before 0.07 sec # after ``` | |||
| 2019-10-25 | Merge pull request #4790 from shuujii/squeeze-redundant-spaces | Yukihiro "Matz" Matsumoto | |
| Squeeze redundant spaces in `test/t/numeric.rb` [ci skip] | |||
| 2019-10-25 | Squeeze redundant spaces in `test/t/numeric.rb` [ci skip] | KOBAYASHI Shuji | |
| 2019-10-25 | Merge pull request #4788 from shuujii/fix-argument-specs-to-Exception | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Exception` | |||
| 2019-10-24 | Fix argument specs to `Exception` | KOBAYASHI Shuji | |
| 2019-10-23 | Merge pull request #4787 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/optimize-str_subseq-with-MRB_UTF8_STRING-to-ASCII-only-string Optimize `str_subseq` with `MRB_UTF8_STRING` to ASCII only string | |||
| 2019-10-23 | Optimize `str_subseq` with `MRB_UTF8_STRING` to ASCII only string | KOBAYASHI Shuji | |
| ### Benchmark (with `MRB_UTF8_STRING`) ```ruby # benchmark.rb COUNT = 300000 SIZE = 10000 s = "a" * SIZE s.size # set `MRB_STR_ASCII` flag i = 0 while i < COUNT s[-1] i += 1 end ``` #### Before this patch: ``` $ time mruby benchmark.rb 2.06 real 2.05 user 0.00 sys ``` #### After this patch: ``` $ time mruby benchmark.rb 0.05 real 0.04 user 0.00 sys ``` | |||
| 2019-10-23 | Add type cast to avoid an error from `int` and `enum` mixture; fix #4786 | Yukihiro "Matz" Matsumoto | |
| 2019-10-23 | Remove unnecessary `mrb_funcall()`. | Yukihiro "Matz" Matsumoto | |
| 2019-10-23 | Remove unnecessary `mrb_string_p()` check. | Yukihiro "Matz" Matsumoto | |
| 2019-10-23 | Merge pull request #4785 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-incorrect-MRB_STR_ASCII-flag-update-in-mrb_str_dump Fix incorrect `MRB_STR_ASCII` flag update in `mrb_str_dump` | |||
| 2019-10-22 | Fix incorrect `MRB_STR_ASCII` flag update in `mrb_str_dump` | KOBAYASHI Shuji | |
| ### Example (with `MRB_UTF8_STRING`) ```ruby s = "\u3042" p s.size s.dump p s.size ``` #### Before this patch: ``` 1 3 ``` #### After this patch: ``` 1 1 ``` | |||
| 2019-10-21 | Merge pull request #4784 from shuujii/remove-Kernel-getc | Yukihiro "Matz" Matsumoto | |
| Remove `Kernel#getc` | |||
| 2019-10-21 | Remove `Kernel#getc` | KOBAYASHI Shuji | |
| `Kernel#getc` has been removed since Ruby 1.9 and is not defined in ISO. | |||
| 2019-10-20 | Merge pull request #4783 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-mrb_str_cat_str-instead-of-mrb_str_concat-if-possible Use `mrb_str_cat_str` instead of `mrb_str_concat` if possible | |||
| 2019-10-20 | Use `mrb_str_cat_str` instead of `mrb_str_concat` if possible | KOBAYASHI Shuji | |
| 2019-10-19 | Merge pull request #4781 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-that-Module-to_s-may-return-frozen-string Fix that `Module#to_s` may return frozen string; ref 08eafe2 | |||
| 2019-10-19 | Fix that `Module#to_s` may return frozen string; ref 08eafe2 | KOBAYASHI Shuji | |
| 2019-10-19 | Merge pull request #4779 from take-cheeze/print_mrbc_cmd | Yukihiro "Matz" Matsumoto | |
| Print mrbc command on verbose mode | |||
| 2019-10-19 | Print mrbc command on verbose mode | take-cheeze | |
| 2019-10-18 | Merge pull request #4778 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/move-methods-of-Kernel-to-kernel.rb-from-io.rb-in-mruby-io-gem Move methods of `Kernel` to `kernel.rb` from `io.rb` in `mruby-io` gem | |||
| 2019-10-18 | Move methods of `Kernel` to `kernel.rb` from `io.rb` in `mruby-io` gem | KOBAYASHI Shuji | |
| 2019-10-18 | Merge pull request #4777 from yurie/pr | Yukihiro "Matz" Matsumoto | |
| Remove constant export declaration for MRBC output compiled as C | |||
| 2019-10-17 | delete extern in C | yuri | |
| 2019-10-17 | Merge pull request #4776 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/make-IO-each-family-without-block-to-return-Enumerator Make `IO#each` family without block to return `Enumerator` | |||
| 2019-10-17 | Make `IO#each` family without block to return `Enumerator` | KOBAYASHI Shuji | |
| 2019-10-16 | Merge pull request #4775 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-mrb_sym_name_len-instead-of-mrb_sym_name-in-assign_class_name Use `mrb_sym_name_len` instead of `mrb_sym_name` in `assign_class_name` | |||
| 2019-10-16 | Use `mrb_sym_name_len` instead of `mrb_sym_name` in `assign_class_name` | KOBAYASHI Shuji | |
