| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-04 | protect NoMethodError from calling to_hash in ==/eql?; close #2002 | Yukihiro "Matz" Matsumoto | |
| 2014-04-04 | Hash#replace to preserve order; close #2001 | Yukihiro "Matz" Matsumoto | |
| 2014-04-04 | add mruby-enum-lazy mrbgem for Enumerable::Lazy | Yukihiro "Matz" Matsumoto | |
| 2014-04-04 | Merge pull request #2000 from kyab/add-help-for-mruby-config | Yukihiro "Matz" Matsumoto | |
| add --help option to mruby-config | |||
| 2014-04-04 | should not access proc->body.irep if proc is PROC_CFUNC; close #1999 | Yukihiro "Matz" Matsumoto | |
| 2014-04-04 | add --help option to mruby-config | kyab | |
| 2014-04-03 | space adjustment in khash.h | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | Merge pull request #1998 from ksss/khash-delete-upper_bound | Yukihiro "Matz" Matsumoto | |
| delete khash member upper_bound | |||
| 2014-04-03 | delete khash member upper_bound | ksss | |
| 2014-04-03 | add assertion before casting | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | downto, upto, step to return Enumerator | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | Merge pull request #1997 from kyab/fix-make_test-fail-without-gems | Yukihiro "Matz" Matsumoto | |
| Fix build fail for 'make test' with no mrbgems | |||
| 2014-04-03 | Fix build fail for 'make test' with no mrbgems | kyab | |
| 2014-04-03 | Merge pull request #1996 from take-cheeze/objectspace | Yukihiro "Matz" Matsumoto | |
| Support :T_FIBER in ObjectSpace.count_objects . | |||
| 2014-04-03 | Support :T_FIBER in ObjectSpace.count_objects . | take_cheeze | |
| 2014-04-03 | Merge pull request #1993 from iij/pr-array-should-not-depend-on-enumerator | Yukihiro "Matz" Matsumoto | |
| test fails when we don't have Enumerator. | |||
| 2014-04-03 | test fails when we don't have Enumerator. | Tomoyuki Sahara | |
| 2014-04-03 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | too much peephole optimization; close #1992 | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | Merge pull request #1991 from ksss/khash-delete-member | Yukihiro "Matz" Matsumoto | |
| Delete member mask and inc | |||
| 2014-04-02 | Delete khash member mask and inc | ksss | |
| because there can be substituted by n_buckets | |||
| 2014-04-02 | Merge pull request #1990 from ksss/khash-bool-macro | Yukihiro "Matz" Matsumoto | |
| Use bool macro KHASH_DEFINE and KHASH_DECLARE | |||
| 2014-04-02 | Use bool macro KHASH_DEFINE and KHASH_DECLARE | ksss | |
| 2014-04-02 | Merge pull request #1989 from ksss/khash-size_t | Yukihiro "Matz" Matsumoto | |
| use size_t instead of int | |||
| 2014-04-02 | use size_t instead of int | ksss | |
| 2014-04-02 | Merge pull request #1988 from ksss/khash-mask | Yukihiro "Matz" Matsumoto | |
| delete unused indexes __m_* masks | |||
| 2014-04-02 | delete unused indexes __m_* masks | ksss | |
| 2014-04-02 | implement part of Array#<=> in C | Yukihiro "Matz" Matsumoto | |
| 2014-04-02 | implement Array comparisons by Ruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-02 | remove some empty lines | Yukihiro "Matz" Matsumoto | |
| 2014-04-02 | handle CR before LF; close #1781 | Yukihiro "Matz" Matsumoto | |
| 2014-04-02 | simpler escape handling in ?c strings | Yukihiro "Matz" Matsumoto | |
| 2014-04-02 | fix else indentation style | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | Hash#keys to update memory region directly | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | should adjust hash value order at deletion | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | implement Hash#== and eql? in Ruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | function expansion in hash.c | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | move Array#inspect implementation to mrblib/array.rb | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | move Hash#inspect implementation to mrblib/hash.rb | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | Hash to preserve order as Ruby1.9 does | Yukihiro "Matz" Matsumoto | |
| 2014-04-01 | Merge pull request #1986 from take-cheeze/proc_macro | Yukihiro "Matz" Matsumoto | |
| REnv macros. | |||
| 2014-04-01 | Use MRB_ENV_STACK_SHARED_P to check `cioff` field of REnv. | take_cheeze | |
| 2014-04-01 | Add macro MRB_ENV_UNSHARE_STACK instead of assigning -1 directly. | take_cheeze | |
| 2014-04-01 | Use MRB_ENV_STACK_LEN instead of accessing `flags` directly to get REnv's ↵ | take_cheeze | |
| stack length. | |||
| 2014-03-31 | singleton class needs to set __outer__; fixed #1983 | Yukihiro "Matz" Matsumoto | |
| 2014-03-31 | Hash function to avoid funcalls if possible | Yukihiro "Matz" Matsumoto | |
| 2014-03-31 | Merge pull request #1985 from take-cheeze/cfunc_with_env | Yukihiro "Matz" Matsumoto | |
| Add API to define cfunc Proc with userdata. | |||
| 2014-03-31 | Merge pull request #1984 from mattn/test_hex_oct_underscore | Yukihiro "Matz" Matsumoto | |
| More tests for String#hex, String#oct as against 9434506035c3fc01de55ac0bc8b75497f8b5df5f | |||
| 2014-03-31 | Add API to define cfunc Proc with userdata. | take_cheeze | |
| The APIs are defined in mruby-proc-ext so include it before using this API. See mruby-proc-ext's test code for usage. This should resolve #1794. | |||
