| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-18 | Add mruby debugger (mrdb) | mimaki | |
| 2014-10-31 | Under cygwin host, ncurses.a is only available instead of termcap.a. | M.Naruoka | |
| 2014-10-29 | use mrb_get_args to parse Integer() option; ref #2625 | Yukihiro "Matz" Matsumoto | |
| 2014-10-29 | Add Kernel.Integer | Jun Hiroe | |
| 2014-10-24 | Add Kernel.Float | Jun Hiroe | |
| 2014-10-21 | Add Kernel.Hash | Jun Hiroe | |
| 2014-10-20 | Add Kernel.String | Jun Hiroe | |
| 2014-10-19 | Refactor mrb_f_array func | Jun Hiroe | |
| 2014-10-19 | refactoring C part of #2611 | Yukihiro "Matz" Matsumoto | |
| 2014-10-19 | Add Kernel.Array | Jun Hiroe | |
| 2014-10-18 | need addtional type check to avoid SEGV; ref #2609 | Yukihiro "Matz" Matsumoto | |
| 2014-10-17 | context proc may be cfunc; fix #2609 | Yukihiro "Matz" Matsumoto | |
| 2014-10-03 | add similar range check for tm->usec as well | Yukihiro "Matz" Matsumoto | |
| 2014-10-03 | always check range before casting time_t to mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-10-03 | time_t may overflow mrb_int when word boxing is used | Yukihiro "Matz" Matsumoto | |
| 2014-10-02 | remove accidental check-in of mruby-thread gem | Yukihiro "Matz" Matsumoto | |
| 2014-10-02 | cast MRB_ENV_STACK_LEN to (mrb_int); ref #2600 | Yukihiro "Matz" Matsumoto | |
| 2014-09-30 | O(1) mrb_sym2name_len(); close #2591 | Yukihiro "Matz" Matsumoto | |
| instead of adding sym->name hash table, linear symbol table is added, and reduced name->sym hash table size. | |||
| 2014-09-30 | Merge pull request #2599 from SatoshiOdawara/fix_target_class_in_instance_eval | Yukihiro "Matz" Matsumoto | |
| target_class should not be TT_ICLASS in instance_eval(string); ref #1152 | |||
| 2014-09-29 | target_class should not be TT_ICLASS in instance_eval(string); ref #1152 | Satoshi Odawara | |
| 2014-09-29 | fixed. closures scope in eval(string) | Satoshi Odawara | |
| 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 | 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-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-06 | implement Hash.[] | INOUE Yasuyuki | |
| 2014-09-04 | refactor MACRO to avoid local variable name conflict; ref #2585 | Yukihiro "Matz" Matsumoto | |
| 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-02 | move mrb_proc_new_cfunc_with_env() to the core | Yukihiro "Matz" Matsumoto | |
| 2014-08-29 | Merge pull request #2570 from cubicdaiya/issues/unify_duplicated_functions | Yukihiro "Matz" Matsumoto | |
| Unify and rename duplicated functions (noregexp() and regexp_check()). | |||
| 2014-08-29 | Fix mismatches for MRB_API declarations. | Tatsuhiko Kubo | |
| 2014-08-28 | Rename functions for avoinding symbol confiliction. | Tatsuhiko Kubo | |
| Add prefix(mrb) to noregexp() and regexp_check(). | |||
| 2014-08-28 | Unify duplicated functions (noregexp() and regexp_check()). | Tatsuhiko Kubo | |
| 2014-08-25 | Remove spaces in end-of-line. | Tatsuhiko Kubo | |
| 2014-08-22 | Use sizeof() instead of strlen(). | Tatsuhiko Kubo | |
| 2014-08-22 | Update math.c | bggd | |
| 2014-08-22 | Merge pull request #2551 from cubicdaiya/issues/use_mrb_str_cat_lit | Yukihiro "Matz" Matsumoto | |
| use mrb_str_cat_lit() instead of mrb_str_cat_cstr(). | |||
| 2014-08-21 | use mrb_str_cat_lit() instead of mrb_str_cat_cstr(). | Tatsuhiko Kubo | |
| 2014-08-21 | changed to call check_cv_name_str in check_cv_name_sym and adjust indent | kkkkkt | |
| 2014-08-20 | Merge pull request #2548 from take-cheeze/mrb_data_init | Yukihiro "Matz" Matsumoto | |
| Add API `mrb_data_init` to initialize `MRB_TT_DATA` tagged instance. | |||
| 2014-08-20 | Add API `mrb_data_init` to initialize `MRB_TT_DATA` tagged instance. | take_cheeze | |
| 2014-08-20 | Remove empty lines. | Tatsuhiko Kubo | |
| 2014-08-19 | Fix error handling for mrb_generate_code(). | Tatsuhiko Kubo | |
| The return value of mrb_generate_code() must be null-checked before referencing. | |||
| 2014-08-19 | Fix error handlings in mirb. | Tatsuhiko Kubo | |
| mrb_parser_new() and mrb_generate_code() may return NULL. | |||
| 2014-08-15 | Improve replacement math functions for Visual C++. | chasonr | |
| 2014-08-11 | "-a-a-".succ should be "-a-b-" | mattn | |
| 2014-08-11 | Fix String#succ. "-a-".succ should be "-b-" | mattn | |
