| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-07-25 | Added functioning read for Win32 | Rubyist | |
| 2015-07-24 | Merge pull request #41 from hone/cross_compile_windows | Tomoyuki Sahara | |
| support for crossbuild for windows (32 bit and 64 bit) using mingw | |||
| 2015-07-23 | support for crossbuild for windows (32 bit and 64 bit) using mingw | Terence Lee | |
| 2015-07-23 | Merge pull request #2896 from sagmor/custom-gcc-version | Yukihiro "Matz" Matsumoto | |
| Add ability to change compiler versions for androideabi | |||
| 2015-07-22 | Add ability to change compiler versions for androideabi | Seba Gamboa | |
| 2015-07-22 | Merge pull request #20 from expeditiousRubyist/master | Tomoyuki Sahara | |
| Win32 Port | |||
| 2015-07-21 | Removed unnecessary/incorrect use of sizeof(int) and corrected more | Rubyist | |
| improper usages of mrb_sys_fail | |||
| 2015-07-21 | Changed some uses of mrb_sys_fail to instead use mrb_raise where | Rubyist | |
| appropriate | |||
| 2015-07-20 | Merge pull request #2894 from suzukaze/fix-docs | Yukihiro "Matz" Matsumoto | |
| Fix indents; Indent is two spaces; Delete tabs [skip ci] | |||
| 2015-07-19 | Fix indents; Indent is two spaces; Delete tabs [skip ci] | Jun Hiroe | |
| 2015-07-18 | Overrided close and write to work on Win32 platforms | Rubyist | |
| 2015-07-18 | Merge pull request #2892 from Mav7/master | Yukihiro "Matz" Matsumoto | |
| Added documentation for hash. | |||
| 2015-07-17 | Minimal semi-working compile on Windows platforms. | Rubyist | |
| 2015-07-17 | Added Winsock 2 to list of libraries to use when building for Windows | Rubyist | |
| targets | |||
| 2015-07-17 | Deleted range and string markdowns for now. | Ralph Desir(Mav7) | |
| 2015-07-17 | Update hash.h.md | Ralph Desir | |
| 2015-07-17 | Update hash.h.md | Ralph Desir | |
| 2015-07-17 | Merge pull request #2890 from jbreeden/sub_pattern_not_found | Yukihiro "Matz" Matsumoto | |
| Don't crash if pattern not found for sub | |||
| 2015-07-16 | Don't crash if pattern not found for sub | Jared Breeden | |
| 2015-07-16 | Added mrb_prepend_module to mruby header | Corey Powell | |
| 2015-07-16 | Make include_module_at static | Corey Powell | |
| Since I can't forsee any reason to use it directly inplace of using prepend/include | |||
| 2015-07-16 | Merge pull request #2889 from takkaw/fix_build_cygwin64 | Yukihiro "Matz" Matsumoto | |
| 64bit Cygwin also doesn't have frexpl(3) | |||
| 2015-07-16 | Merge pull request #2887 from ↵ | Yukihiro "Matz" Matsumoto | |
| cremno/use-mrb_str_cat_str-instead-of-mrb_str_append use mrb_str_cat_str() instead of mrb_str_append() | |||
| 2015-07-16 | Merge pull request #2888 from ↵ | Yukihiro "Matz" Matsumoto | |
| cremno/delete-non-nullptr-checks-before-mrb_free()-calls delete mrb_free()-related non-NULL checks | |||
| 2015-07-16 | 64bit Cygwin also doesn't have frexpl(3) | takkaw | |
| 2015-07-16 | delete mrb_free()-related non-NULL checks | cremno | |
| No need to optimize since a program only exits once and errors are rare. Also the mruby source code doesn't have these kind of checks elsewhere. The ones in {Time,Random}#initialize are kept because there it actually matters since initialization always happens and re-initialization is unlikely. | |||
| 2015-07-16 | use mrb_str_cat_str() instead of mrb_str_append() | cremno | |
| If the argument is always a string, then mrb_str_cat_str() can be directly called instead of indirectly by mrb_str_append(). mrb_any_to_s(), mrb_obj_as_string(), mrb_inspect() always return a string. | |||
| 2015-07-15 | Renamed MRB_FLAG_IS_INSTANCE to MRB_INSTANCE_TT_MASK | Corey Powell | |
| 2015-07-15 | mrb_protect() to return the exception raised (with the state of true) | Yukihiro "Matz" Matsumoto | |
| 2015-07-15 | add an small comment description in mruby/error.h header | Yukihiro "Matz" Matsumoto | |
| 2015-07-15 | remove unused variable declaration | Yukihiro "Matz" Matsumoto | |
| 2015-07-15 | Use class array instead of variadic. | take_cheeze | |
| 2015-07-15 | Implement `mrb_protect`, `mrb_ensure`, `mrb_rescue`, `mrb_rescue_exceptions`. | take_cheeze | |
| (`mrb_rescue_exceptions` is mruby implementation of `rb_rescue2`.) Closes #2844, closes #2837. | |||
| 2015-07-15 | Refactor `Build#compile_as_cxx`. | take_cheeze | |
| 2015-07-14 | Remove non-applicable "hack" comment | Corey Powell | |
| 2015-07-14 | Applied gc patch to fix ORIGIN ICLASS method table leak | Corey Powell | |
| Based on the gc patch by ko1 https://github.com/ruby/ruby/commit/5922c954614e5947a548780bb3b894626affe6dd | |||
| 2015-07-14 | Renamed parameters in include_module_at | Corey Powell | |
| 2015-07-14 | Merge pull request #2884 from jbreeden/doc_bang_modifier | Yukihiro "Matz" Matsumoto | |
| Doc bang modifier | |||
| 2015-07-13 | Fix typo | jbreeden | |
| 2015-07-13 | Add ! documentation to mruby.h.md | jbreeden | |
| 2015-07-14 | mrb_get_args: improve function description about ! | Yukihiro "Matz" Matsumoto | |
| 2015-07-14 | mrb_get_args: allow d! | Yukihiro "Matz" Matsumoto | |
| 2015-07-14 | mrb_get_args: allow A,H,s,z,a,d specifiers to take ! to accept nil. | Yukihiro "Matz" Matsumoto | |
| S,A,H gives nil, s,z,a,d gives NULL for nil argument. ref 02474da | |||
| 2015-07-13 | Clean up tests | Blaž Hrastnik | |
| 2015-07-13 | assert() cannot be nested | Blaž Hrastnik | |
| 2015-07-13 | Set origin when doing kind_of? comparisons | Blaž Hrastnik | |
| 2015-07-13 | Enable test_prepend_module_ancestors because it seems to pass. | Blaž Hrastnik | |
| 2015-07-13 | Space out test_prepend_super_in_alias assert | Corey Powell | |
| Also tried to fix it, however the problem lies with how aliased methods are done and their internal structure. mruby simply aliases methods by grabbing the RProc and giving it a new name, super then determines the original method to call by using the name so a method called m, aliased as m2, will call the m2 super method instead of m | |||
| 2015-07-13 | included_modules, origin fix | Corey Powell | |
| Prepended modules would include their origin ICLASS | |||
| 2015-07-13 | Bugfix, included_modules would include classes | Corey Powell | |
