| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-23 | don't print anonymous struct class name | Yukihiro "Matz" Matsumoto | |
| 2015-09-23 | mruby-struct gem refactoring | Yukihiro "Matz" Matsumoto | |
| 2015-09-23 | should initialize local variable prepended to false | Yukihiro "Matz" Matsumoto | |
| 2015-09-23 | String#rindex should no longer take integer argument | Yukihiro "Matz" Matsumoto | |
| 2015-09-23 | remove a comment that no longer be true; 2cb6c27 | Yukihiro "Matz" Matsumoto | |
| 2015-09-22 | String#index should no longer take integer argument | Yukihiro "Matz" Matsumoto | |
| 2015-09-22 | Merge pull request #2959 from sagmor/api-documentation | Yukihiro "Matz" Matsumoto | |
| C API documentation | |||
| 2015-09-21 | Merge descriptions from doc/api/mruby/array.h.md | Seba Gamboa | |
| 2015-09-21 | document mrb_nil_value | Seba Gamboa | |
| 2015-09-21 | Document data header | Seba Gamboa | |
| 2015-09-22 | add new functions mrb_gc_register/unregister; close #1411 | Yukihiro "Matz" Matsumoto | |
| some routines need to refer mruby objects (e.g. callbacks), in that case you have to protect your objects from garbage collection. the new functions mrb_gc_register() keeps those objects from GC. you have to remove your objects using mrb_gc_unregister() when your C routines use mruby objects any longer, otherwise objects will leak. | |||
| 2015-09-21 | Sort compiler macros around | Seba Gamboa | |
| 2015-09-21 | Sorting documentation grouping | Seba Gamboa | |
| 2015-09-20 | Setting up doxygen groups | Seba Gamboa | |
| 2015-09-20 | Merging documentation from docs | Seba Gamboa | |
| 2015-09-18 | Playing around with some documentations schemes | Seba Gamboa | |
| 2015-09-19 | Merge pull request #2958 from suzukaze/fix-indents | Yukihiro "Matz" Matsumoto | |
| Fix indents | |||
| 2015-09-19 | Fix indents | Jun Hiroe | |
| 2015-09-18 | Merge pull request #2957 from suzukaze/replace-1-with-true-macro | Yukihiro "Matz" Matsumoto | |
| Replace 1 with TURE macro | |||
| 2015-09-18 | Merge pull request #2956 from Asmod4n/master | Yukihiro "Matz" Matsumoto | |
| Problem: Hash#fetch doesn't raise KeyError when a key cannot be found | |||
| 2015-09-18 | Replace 1 with TURE macro | Jun Hiroe | |
| 2015-09-17 | Problem: Hash#fetch doesn't raise KeyError when a key cannot be found | Asmod4n | |
| Solution: change the Exception class raised to KeyError when a key cannot be found. | |||
| 2015-09-17 | Merge remote-tracking branch 'mruby/master' | Asmod4n | |
| 2015-09-17 | Merge pull request #2953 from takahashim/string_aset | Yukihiro "Matz" Matsumoto | |
| support String#[pos, len]= val | |||
| 2015-09-16 | support String#[]= with 3 args | takahashim | |
| 2015-09-16 | Merge pull request #2952 from takahashim/hash-fetch-block-key | Yukihiro "Matz" Matsumoto | |
| fix block variable in Hash#fetch | |||
| 2015-09-16 | fix block variable in Hash#fetch | takahashim | |
| 2015-09-15 | Merge pull request #2951 from tatsuhiro-t/mrb_close_with_nullptr | Yukihiro "Matz" Matsumoto | |
| Don't crash if NULL is passed to mrb_close | |||
| 2015-09-14 | instance_eval should set target_class; close #2936 | Yukihiro "Matz" Matsumoto | |
| target_class should be singleton class of the receiver | |||
| 2015-09-12 | Don't crash if NULL is passed to mrb_close | Tatsuhiro Tsujikawa | |
| Sometimes it is very useful just return from mrb_close if NULL is passed as mrb. This is the same spirit of free(3), which just does nothing if NULL is passed. | |||
| 2015-09-11 | Merge pull request #1822 from mattn/locale | Yukihiro "Matz" Matsumoto | |
| Add mrb_utf8_from_locale, mrb_utf8_free, mrb_locale_from_utf8, mrb_locale_free | |||
| 2015-09-11 | Support windows locale | Yasuhiro Matsumoto | |
| Add mrb_utf8_from_locale, mrb_utf8_free, mrb_locale_from_utf8, mrb_locale_free. Just works for windows. | |||
| 2015-09-11 | Merge pull request #2949 from tatsuhiro-t/custom-install-location | Yukihiro "Matz" Matsumoto | |
| Customize installation directory using INSTALL_DIR environment variable | |||
| 2015-09-11 | Customize installation directory using INSTALL_DIR environment variable | Tatsuhiro Tsujikawa | |
| Previously, minirake installed several commands (e.g., mrbc) in repository locally under bin directory. But there was no knob for users to change this directory. It effectively made `make distcheck` fail if mruby was embedded into project managed by autotools. This change adds a way for the user to change installation directory by setting INSTALL_DIR environment variable. | |||
| 2015-09-10 | add Hash#rehash to handle key modification; ref #2945 | Yukihiro "Matz" Matsumoto | |
| 2015-09-10 | Merge pull request #2947 from kazuho/kazuho/freeze-hash-key | Yukihiro "Matz" Matsumoto | |
| freeze the hash keys (fixes #2945) | |||
| 2015-09-10 | avoid unnecessary string duplications by checking the frozen flag | Kazuho Oku | |
| 2015-09-10 | freeze the hash key (fixes #2945) | Kazuho Oku | |
| 2015-09-05 | Merge branch 'polyfox-module-prepend' | Yukihiro "Matz" Matsumoto | |
| 2015-09-05 | remove `origin` member to implement prepend from struct RClass; ref #2885 | Yukihiro "Matz" Matsumoto | |
| instead origin is saved in ICLASS with MRB_FLAG_IS_ORIGIN set. | |||
| 2015-09-05 | Merge pull request #2943 from zzak/subdirs | Yukihiro "Matz" Matsumoto | |
| Allow rbfiles in mrblib and test to have subdirs | |||
| 2015-09-05 | Merge pull request #2942 from suzukaze/revert | Yukihiro "Matz" Matsumoto | |
| Revert 7b5f8b0 except removing trailing spaces | |||
| 2015-09-05 | Revert 7b5f8b0 except removing trailing spaces | Jun Hiroe | |
| 2015-09-04 | Allow rbfiles in mrblib and test to have subdirs | Zachary Scott | |
| 2015-09-04 | Merge pull request #2941 from Mav7/master | Yukihiro "Matz" Matsumoto | |
| Added range.h.md and edited re.h.md and version.h.md | |||
| 2015-09-04 | Merge branch 'module-prepend' of https://github.com/polyfox/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| polyfox-module-prepend | |||
| 2015-09-03 | Update range.h.md | Ralph Desir | |
| 2015-09-03 | Cleaned up the version.h markdown. | Ralph Desir | |
| 2015-09-03 | Cleaned up the re.h markdown. | Ralph Desir | |
| 2015-09-03 | Added range markdown. | Ralph Desir(Mav7) | |
