| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-24 | I fix typos in variable.c. | Jun Hiroe | |
| 2013-07-24 | suppress the warnings from get_valid_iv_sym() | fleuria | |
| The parameter iv_name SHOULD be string or symbol, but there is no garantee on it. | |||
| 2013-07-24 | fix warning | fleuria | |
| 2013-07-24 | rename variable_gray_list to atomic_gray_list | fleuria | |
| 2013-07-24 | introduce gc_mark_gray_list(), and cleanup redaunt code with it | fleuria | |
| 2013-07-24 | Fix mrbc error for space included path | kyab | |
| 2013-07-24 | gc: replace comment "a round of GC" to "a GC cycle" | fleuria | |
| 2013-07-24 | rename mrb_garbage_collect() to mrb_full_gc() | fleuria | |
| 2013-07-24 | introduce incremental_gc_step() | fleuria | |
| 2013-07-23 | Merge pull request #1403 from Fleurer/comments-generational-gc | Yukihiro "Matz" Matsumoto | |
| add comments for Generational Mode in gc.c | |||
| 2013-07-23 | Merge pull request #1402 from mattn/check_home_is_null | Yukihiro "Matz" Matsumoto | |
| Check home is null | |||
| 2013-07-23 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2013-07-23 | Merge pull request #1399 from carsonmcdonald/readlinelinkfix | Yukihiro "Matz" Matsumoto | |
| If readline is enabled add readline to libraries to link | |||
| 2013-07-23 | Merge pull request #1400 from carsonmcdonald/readlinewarnfix | Yukihiro "Matz" Matsumoto | |
| Move home variable into readline ifdef | |||
| 2013-07-23 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-07-23 | String `=~` and `match` to work with pluggable Regexp; close #1398 | Yukihiro "Matz" Matsumoto | |
| 2013-07-23 | gc: add comments for Generational Mode | fleuria | |
| 2013-07-23 | Check home is null | mattn | |
| 2013-07-23 | "spec.author" is better for single-author gems. | Tomoyuki Sahara | |
| "spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/ | |||
| 2013-07-23 | display multiple authors better. | Tomoyuki Sahara | |
| Before: Copyright (c) 2013 ["a", "b"] After: Copyright (c) 2013 a, b | |||
| 2013-07-22 | If readline is enabled add readline to libraries to link | Carson McDonald | |
| 2013-07-22 | Move home variable into readline ifdef | Carson McDonald | |
| 2013-07-22 | Merge pull request #1397 from Fleurer/revise-comments-on-white-colors | Yukihiro "Matz" Matsumoto | |
| revise the Two White Parts comments in gc.c | |||
| 2013-07-22 | revise the Two White Parts comments in gc.c | fleuria | |
| 2013-07-21 | Merge pull request #1392 from Fleurer/gc-rename-advance-phase | Yukihiro "Matz" Matsumoto | |
| rename advance_phace() to incremental_gc_until(), and cleanup some redundant codes with it. | |||
| 2013-07-22 | change else formatting | Yukihiro "Matz" Matsumoto | |
| 2013-07-21 | Merge pull request #1396 from Archytaus/attr-perf-fix | Yukihiro "Matz" Matsumoto | |
| Performance improvement of methods generated by Module#attr | |||
| 2013-07-21 | Merge pull request #1395 from carsonmcdonald/fixdepcheck | Yukihiro "Matz" Matsumoto | |
| Fail if dependency isn't found | |||
| 2013-07-21 | Merge pull request #1393 from crimsonwoods/add-android-ndk-linux-x86_64-support | Yukihiro "Matz" Matsumoto | |
| Improve Android NDK toolchain support. | |||
| 2013-07-21 | Cleaned up some of the Module#attr tests | Ryan Scott | |
| 2013-07-21 | Reset the so-render benchmark so that it is what it was before my attr ↵ | Ryan Scott | |
| performance testing. | |||
| 2013-07-21 | Merge branch 'master' into attr-perf-fix | Ryan Scott | |
| 2013-07-21 | Changed the attr methods in mrblib, so that they take advantage of ↵ | Ryan Scott | |
| validating the name against a string parameter if need be | |||
| 2013-07-21 | Slight cleanup of code | Ryan Scott | |
| 2013-07-20 | Fail if dependency isn't found | Carson McDonald | |
| 2013-07-20 | Improve Android NDK toolchain support. | crimsonwoods | |
| Linux-x86_64 has not been supported now. This commit add Linux-x86_64 platform support. | |||
| 2013-07-19 | Merge branch 'master' into attr-perf-fix | Ryan Scott | |
| Conflicts: mrblib/class.rb | |||
| 2013-07-19 | Wrote tests around attr, attr_reader, attr_writer, attr_accessor | Ryan Scott | |
| 2013-07-19 | cleanup redundant codes with incremental_gc_until() | fleuria | |
| 2013-07-19 | rename advance_phase to incremental_gc_until | fleuria | |
| in fact advance_phace() is not really a "phase", but can be used as an utility function. | |||
| 2013-07-18 | Merge pull request #1382 from suzukaze/add-comments | Yukihiro "Matz" Matsumoto | |
| Add comments in irep.h | |||
| 2013-07-18 | Merge pull request #1390 from kyab/mirb_history | Yukihiro "Matz" Matsumoto | |
| Save mirb history when readline enabled | |||
| 2013-07-18 | Merge pull request #1389 from carsonmcdonald/stringtestfix | Yukihiro "Matz" Matsumoto | |
| Fix string test for so that it works for int16 | |||
| 2013-07-18 | Merge pull request #1391 from carsonmcdonald/fixfallbackarraysize | Yukihiro "Matz" Matsumoto | |
| Changed use of MRB_INT_MAX to MRB_INT_MAX-1 | |||
| 2013-07-18 | Changed use of MRB_INT_MAX to MRB_INT_MAX-1 | Carson McDonald | |
| 2013-07-18 | Use env[USERPROFILE] for Windows | kyab | |
| 2013-07-18 | First round of trying to improve the performance of attr_reader and ↵ | Ryan Scott | |
| attr_writer. From ~24sec to ~15sec | |||
| 2013-07-18 | Save mirb history when readline enabled | kyab | |
| 2013-07-17 | Fix string test for so that it works for int16 | Carson McDonald | |
| 2013-07-16 | Merge pull request #1388 from carsonmcdonald/toplevelwarnfix | Yukihiro "Matz" Matsumoto | |
| Fix warning by making call explicit | |||
