| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-09-21 | Wrap CONTRIBUTING.md to 80 columns | Eric Hodel | |
| 2014-09-21 | Wrap INSTALL to 80 columns | Eric Hodel | |
| 2014-09-21 | Wrap README.md to 80 columns | Eric Hodel | |
| 2014-09-19 | code reduce by using mrb_get_args("n") | Yukihiro "Matz" Matsumoto | |
| 2014-09-19 | `Module#const_defined?` to take second optional argument as CRuby; fix #2593 | Yukihiro "Matz" Matsumoto | |
| 2014-09-19 | change class argument of mrb_const_defined_at from `struct RClass*` to ↵ | Yukihiro "Matz" Matsumoto | |
| `mrb_value` to make it consistent with mrb_const_defined; ref #2593 | |||
| 2014-09-19 | const_defined? to check superclasses; ref #2593 | Yukihiro "Matz" Matsumoto | |
| 2014-09-19 | to_hash/to_a check in Hash[] should only be done when only one argument is ↵ | Yukihiro "Matz" Matsumoto | |
| given; ref #2594 | |||
| 2014-09-19 | Merge pull request #2594 from yasuyuki/hash | Yukihiro "Matz" Matsumoto | |
| Implement Hash[] | |||
| 2014-09-18 | copy documentation comment from CRuby | INOUE Yasuyuki | |
| 2014-09-18 | remove line number from raise message | INOUE Yasuyuki | |
| 2014-09-18 | refactor Hash generator loop | INOUE Yasuyuki | |
| 2014-09-17 | Merge pull request #2592 from miura1729/original2 | Yukihiro "Matz" Matsumoto | |
| update outdated links to the original program. | |||
| 2014-09-16 | update outdated links to the original program. | Miura Hideki | |
| 2014-09-15 | change mrb_sym type from uint16_t to uint32_t | Yukihiro "Matz" Matsumoto | |
| 2014-09-12 | constify pointer from RARRAY_PTR to detect potential write barrier bugs. | Yukihiro "Matz" Matsumoto | |
| if you see compiler errors due to this commit, you'd better to use array-modifying functions, e.g. mrb_ary_set() or mrb_ary_push(), otherwise you might see nasty GC bugs in the future. if you are sure what you are doing, replace `RARRAY_PTR(ary)` by `mrb_ary_ptr(ary)->ptr`. but be warned. | |||
| 2014-09-10 | add benchmark/bm_app_lc_fizzbuzz.rb | Yukihiro "Matz" Matsumoto | |
| 2014-09-09 | Merge pull request #2590 from cubicdaiya/issues/inline2 | Yukihiro "Matz" Matsumoto | |
| Add inline to str_with_class(). | |||
| 2014-09-09 | Add inline to str_with_class(). | Tatsuhiko Kubo | |
| 2014-09-08 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-09-08 | Merge pull request #2589 from take-cheeze/fix_msvc_cxx | Yukihiro "Matz" Matsumoto | |
| Fix MSVC C++ ABI build. Close #2588. | |||
| 2014-09-08 | Fix MSVC C++ ABI build. Close #2588. | take_cheeze | |
| 2014-09-08 | remove execution bit from benchmark/fib39.rb | Yukihiro "Matz" Matsumoto | |
| 2014-09-08 | fixed wandering filename problem | Yukihiro "Matz" Matsumoto | |
| 2014-09-06 | implement Hash.[] | INOUE Yasuyuki | |
| 2014-09-05 | Merge pull request #2587 from take-cheeze/fix_def_gem_load | Yukihiro "Matz" Matsumoto | |
| Fix default gem loading in `generate_gem_table`. | |||
| 2014-09-05 | Fix default gem loading in `generate_gem_table`. | take_cheeze | |
| 2014-09-05 | support native byteorder in mrb files; ref 3492be | Yukihiro "Matz" Matsumoto | |
| 2014-09-05 | condition refactoring in load.c | Yukihiro "Matz" Matsumoto | |
| 2014-09-05 | add some MRB_API to function prototypes | Yukihiro "Matz" Matsumoto | |
| 2014-09-05 | Merge branch 'cremno-add-symbol-table-overflow-check' | Yukihiro "Matz" Matsumoto | |
| 2014-09-05 | use uint16_t instead of short; ref #2568 | Yukihiro "Matz" Matsumoto | |
| 2014-09-04 | refactor MACRO to avoid local variable name conflict; ref #2585 | Yukihiro "Matz" Matsumoto | |
| 2014-09-04 | Merge pull request #2585 from cremno/get-rid-of-shadowing-variables-mrbgems | Yukihiro "Matz" Matsumoto | |
| get rid of shadowing variables (mrbgems) | |||
| 2014-09-04 | Merge pull request #2586 from cremno/fix-strict-aliasing-rule-violation | Yukihiro "Matz" Matsumoto | |
| fix strict aliasing rule violation | |||
| 2014-09-04 | fix strict aliasing rule violation | cremno | |
| 2014-09-04 | get rid of shadowing variables (mrbgems) | cremno | |
| Mostly renaming, except that the definition of struct accessor methods is now done in a new function. | |||
| 2014-09-04 | instance variable name validation based on <ctype.h>; fix #2584 | Yukihiro "Matz" Matsumoto | |
| 2014-09-04 | wrong iseq conversion flag | Yukihiro "Matz" Matsumoto | |
| 2014-09-04 | avoid iseq allocation from static irep binary. it reduces 424KB allocation ↵ | Yukihiro "Matz" Matsumoto | |
| for mrbtest | |||
| 2014-09-04 | rename a local variable current_node -> nodetype; ref #2583 | Yukihiro "Matz" Matsumoto | |
| 2014-09-04 | Merge pull request #2583 from cremno/get-rid-of-shadowing-variables | Yukihiro "Matz" Matsumoto | |
| get rid of shadowing variables | |||
| 2014-09-03 | get rid of shadowing variables | cremno | |
| Mostly by renaming the shadowing variable. If a shadowing variable was deleted, the shadowed one can be used instead. | |||
| 2014-09-03 | Merge pull request #2582 from iij/pr-attr-accessor-save-arena | Yukihiro "Matz" Matsumoto | |
| save and restore arena index to prevent arena overflow. | |||
| 2014-09-03 | save and restore arena index to prevent arena overflow. | Tomoyuki Sahara | |
| 2014-09-03 | Merge pull request #2581 from cubicdaiya/issues/use_lit | Yukihiro "Matz" Matsumoto | |
| Use mrb_str_cat_lit() instead of mrb_str_cat_cstr() for string-literals. | |||
| 2014-09-03 | Use mrb_str_cat_lit() instead of mrb_str_cat_cstr() for string-literals. | Tatsuhiko Kubo | |
| 2014-09-02 | Merge pull request #2580 from suzukaze/refactor-kernel.c | Yukihiro "Matz" Matsumoto | |
| Refactor kernel.c | |||
| 2014-09-02 | Refactor mrb_obj_is_kind_of_m() in kernel.c | Jun Hiroe | |
| 2014-09-02 | Refactor obj_is_instance_of() in kernel.c | Jun Hiroe | |
