| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-09-19 | fixup! Remove implicit conversion using `to_str` method. | Yukihiro "Matz" Matsumoto | |
| 2018-09-19 | Remove implicit conversion using `to_str` method. | Yukihiro "Matz" Matsumoto | |
| We have added internal convenience method `__to_str` which does string type check. | |||
| 2018-09-15 | Exclude pipe and exec on iOS/tvOS | Tom Black | |
| Use of `execl()` is prohibited on these platforms | |||
| 2018-09-16 | fixup! Add support for iOS platforms that does not support `fork`; fix #4113 | Yukihiro "Matz" Matsumoto | |
| 2018-09-16 | Add support for iOS platforms that does not support `fork`; fix #4113 | Yukihiro "Matz" Matsumoto | |
| 2018-08-30 | Separate meta-programming features to `mruby-metaprog` gem. | Yukihiro "Matz" Matsumoto | |
| We assume meta-programming is less used in embedded environments. We have moved following methods: * Kernel module global_variables, local_variables, singleton_class, instance_variables, instance_variables_defined?, instance_variable_get, instance_variable_set, methods, private_methods, public_methods, protected_methods, singleton_methods, define_singleton_methods * Module class class_variables, class_variables_defined?, class_variable_get, class_variable_set, remove_class_variable, included_modules, instance_methods, remove_method, method_removed, constants * Module class methods constants, nesting Note: Following meta-programming methods are kept in the core: * Module class alias_method, undef_method, ancestors, const_defined?, const_get, const_set, remove_const, method_defined?, define_method * Toplevel object define_method `mruby-metaprog` gem is linked by default (specified in default.gembox). When it is removed, it will save 40KB (stripped:8KB) on x86-64 environment last time I measured. | |||
| 2018-08-13 | Try to fix a fragile `File#mtime` test. | Yukihiro "Matz" Matsumoto | |
| 2018-07-02 | Support MRB_WITHOUT_FLOAT to mruby-io | Yusuke Endoh | |
| 2018-06-20 | Merge pull request #4052 from take-cheeze/fix_mtime_test | Yukihiro "Matz" Matsumoto | |
| Use temporary file name for `File#mtime` test to avoid conflicts. | |||
| 2018-06-20 | Use temporary name for `File#mtime` test to avoid conflicts. | take-cheeze | |
| 2018-06-20 | Add test_dependency from mruby-io to mruby-time. | Yukihiro "Matz" Matsumoto | |
| 2018-06-19 | Merge pull request #4047 from kou/stop-to-use-freed-value | Yukihiro "Matz" Matsumoto | |
| Stop to use freed value | |||
| 2018-06-19 | Stop to use freed value | Kouhei Sutou | |
| 2018-06-19 | Fix wrong free function | Kouhei Sutou | |
| mrb_locale_free() should be used for the return value of mrb_locale_from_utf8(). | |||
| 2018-05-01 | Check the return value from `mrb_get_datatype()`; fix #4009 | Yukihiro "Matz" Matsumoto | |
| The return value (void*) may be NULL. Avoid using `mrb_get_datatype()` directly and use `io_get_open_fptr()` instead. | |||
| 2018-04-18 | `mrb_io_initialize_copy` should not free existing `fptr`; fix #4005 | Yukihiro "Matz" Matsumoto | |
| When arguments `copy` and `orig` are the same object. | |||
| 2018-04-18 | `mrb_dup()` should fail if `fd` is a negative integer; ref #4005 | Yukihiro "Matz" Matsumoto | |
| 2018-04-17 | Fix `use after free in File#initilialize_copy`; fix #4001 | Yukihiro "Matz" Matsumoto | |
| The bug and the fix were reported by https://hackerone.com/pnoltof | |||
| 2018-02-23 | Pass same mode parameter to `IO.sysopen` and `IO.open` in `IO.read`. | Takeshi Watanabe | |
| 2018-01-30 | add File#mtime | Yasuhiro Matsumoto | |
| 2018-01-14 | Remove trailing space | ksss | |
| 2018-01-14 | IO#close_on_exec? is not supported on MinGW | ksss | |
| 2018-01-14 | Should be true for close_on_exec flag | ksss | |
| 2017-12-18 | Fix descriptor leakage; ref #3903 | Yukihiro "Matz" Matsumoto | |
| 2017-12-18 | Fix `fptr` leakage; ref #3903 | Yukihiro "Matz" Matsumoto | |
| 2017-12-18 | Use `_dup2` instead of `dup2` on Windows; ref #3903 | Yukihiro "Matz" Matsumoto | |
| 2017-12-18 | `open` on Windows takes `int` 3rd argument instead of `mode_t`. | Yukihiro "Matz" Matsumoto | |
| 2017-12-18 | Use `_dup` instead of `dup` on Windows; ref #3903 | Yukihiro "Matz" Matsumoto | |
| 2017-12-17 | Implement IO#initialize_copy | ksss | |
| 2017-12-14 | Initialized mrb_io.is_socket | Hiroshi Mimaki | |
| 2017-12-14 | On Windows, `_S_IREAD` and `_S_IWRITE` is defined in `sys/stat.h`. | Yukihiro "Matz" Matsumoto | |
| 2017-12-14 | Use `_open` and `_close` on Windows. | Yukihiro "Matz" Matsumoto | |
| 2017-12-14 | fix mkstemp implementation for MSVC | Yasuhiro Matsumoto | |
| 2017-12-14 | Fix socket closing by using `closesocket` API in windows instead. | Takeshi Watanabe | |
| 2017-12-13 | Added mrbgem's summary. | Hiroshi Mimaki | |
| 2017-12-13 | fix crash bug on Windows | Yasuhiro Matsumoto | |
| 2017-12-13 | Remove VC++ compiler warnings. | Yukihiro "Matz" Matsumoto | |
| 2017-12-13 | fix path locales | Yasuhiro Matsumoto | |
| 2017-12-13 | Reduce VC++ type mismatch warnings. | Yukihiro "Matz" Matsumoto | |
| 2017-12-13 | Merge pull request #3886 from mattn/io-windows | Yukihiro "Matz" Matsumoto | |
| implement popen/flock on Windows | |||
| 2017-12-13 | fix build for MSVC | Yasuhiro Matsumoto | |
| 2017-12-13 | close file descriptors | Yasuhiro Matsumoto | |
| 2017-12-13 | mingw have mkstemp | Yasuhiro Matsumoto | |
| 2017-12-13 | fix test | Yasuhiro Matsumoto | |
| 2017-12-12 | implement flock on Windows | Yasuhiro Matsumoto | |
| 2017-12-12 | fix compilation error | Yasuhiro Matsumoto | |
| 2017-12-12 | fix compilation error | Yasuhiro Matsumoto | |
| 2017-12-12 | add definition for pid_t on MSVC | Yasuhiro Matsumoto | |
| 2017-12-12 | close handle | Yasuhiro Matsumoto | |
| 2017-12-12 | implement popen on Windows | Yasuhiro Matsumoto | |
