| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2014-08-11 | Fix String#succ. "-".succ should be "." | mattn | |
| 2014-08-09 | timer on windows bug fixed. | dycoon | |
| 2014-08-08 | remove test for succ on Unicode (non-ASCII) char; #2520 | Yukihiro "Matz" Matsumoto | |
| 2014-08-08 | Merge branch 'string-succ' of https://github.com/mattn/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| mattn-string-succ | |||
| 2014-08-08 | Add String#succ, String#succ!, String#next, String#next! | mattn | |
| 2014-08-08 | fixed evaluation context of eval(string) and instance_eval(string) | Satoshi Odawara | |
| 2014-08-08 | move StopIteration to core; close #2518 | Yukihiro "Matz" Matsumoto | |
| 2014-08-06 | Merge pull request #2510 from cremno/mruby-strip-use-mrb_open_core | Yukihiro "Matz" Matsumoto | |
| mruby-strip doesn't need mrbgems | |||
| 2014-08-05 | added Math.cos and Math.tan test case | kkkkkt | |
| 2014-08-04 | mruby-strip doesn't need mrbgems | cremno | |
| Reduces executable size by more than 50% (409->171 KB). | |||
| 2014-08-04 | add MRB_API modifiers to mruby API functions | Yukihiro "Matz" Matsumoto | |
| 2014-08-03 | Time#to_i and Time#usec should care about mrb_int overflow on MRB_INT16; ref ↵ | Yukihiro "Matz" Matsumoto | |
| #2495 | |||
| 2014-07-30 | Merge pull request #2462 from cremno/mirb-malloc-history_path | Yukihiro "Matz" Matsumoto | |
| mirb: allocate `history_path` dynamically | |||
| 2014-07-22 | restore mrb_get_args() in f_instance_eval to check arguments type | Yukihiro "Matz" Matsumoto | |
| 2014-07-22 | exception in instance_eval should not exit mrb_run; fix #2483 | Yukihiro "Matz" Matsumoto | |
