| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-02 | Merge pull request #1631 from cremno/fix-ruby-warnings | Yukihiro "Matz" Matsumoto | |
| fix some warnings emitted by 'ruby -w' | |||
| 2014-01-02 | fix some warnings emitted by 'ruby -w' | cremno | |
| - File.exists? is deprecated since 2.1.0 - tasks/mruby_build_commands.rake:268: ambiguous argument | |||
| 2014-01-01 | return value from #object_id may not be Fixnum; ref #1630 | Yukihiro "Matz" Matsumoto | |
| 2014-01-01 | successful recursion check to be shallower; ref #1630 | Yukihiro "Matz" Matsumoto | |
| 2013-12-31 | Merge pull request #1630 from carsonmcdonald/morekerneltests | Yukihiro "Matz" Matsumoto | |
| More kernel testing | |||
| 2013-12-31 | Method missing and inspect tests | Carson McDonald | |
| 2013-12-31 | Test coverage of extending stack and overflow | Carson McDonald | |
| 2013-12-31 | More object_id test coverage | Carson McDonald | |
| 2013-12-30 | Merge pull request #1624 from cubicdaiya/issues/invalid_return_in_top_level | Yukihiro "Matz" Matsumoto | |
| return-value of mrb_run is invalid in top-level-scope | |||
| 2013-12-30 | Merge pull request #1625 from iij/pr-string-partition | Yukihiro "Matz" Matsumoto | |
| add String#partition and String#rpartition. | |||
| 2013-12-30 | Merge pull request #1626 from carsonmcdonald/moreclasstests | Yukihiro "Matz" Matsumoto | |
| More tests for Class behavior | |||
| 2013-12-30 | Merge pull request #1629 from akuroda/add_array_test | Yukihiro "Matz" Matsumoto | |
| add tests for Array methods | |||
| 2013-12-30 | add some tests for [], delete_at, index, and rindex | Akira Kuroda | |
| 2013-12-27 | When superclass isn't a class tests | Carson McDonald | |
| 2013-12-27 | More singleton tests | Carson McDonald | |
| 2013-12-27 | add String#partition and String#rpartition. | Tomoyuki Sahara | |
| 2013-12-27 | return-value of mrb_run is invalid in top-level-scope | cubicdaiya | |
| The return-value of mrb_run in top-level-scope should be the evaluated value at last. | |||
| 2013-12-26 | adjust register position for return value; fix #1620 | Yukihiro "Matz" Matsumoto | |
| 2013-12-26 | revert fix in #1620 | Yukihiro "Matz" Matsumoto | |
| 2013-12-26 | Merge branch 'singletonfix' of https://github.com/carsonmcdonald/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| carsonmcdonald-singletonfix | |||
| 2013-12-25 | Fix return when value expected | Carson McDonald | |
| 2013-12-25 | Add more testing for singletons | Carson McDonald | |
| 2013-12-25 | use static symbols for debug filename info | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | wrong operator precedence fixed | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | Merge pull request #1619 from carsonmcdonald/fixmoduleattrtest | Yukihiro "Matz" Matsumoto | |
| Change :vattr= to :cattr= in respond_to? test | |||
| 2013-12-25 | avoid copying when the original string comes with MRB_STR_NOFREE | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | clear STR_NOFREE flag on modify | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | zero copy str_new from static allocate irep | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | zero copy intern from static allocate irep | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | rename mrb_intern_litral -> mrb_intern_static | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | Change :vattr= to :cattr= in respond_to? test | Carson McDonald | |
| 2013-12-24 | Merge pull request #1618 from h2so5/fix-1617 | Yukihiro "Matz" Matsumoto | |
| fix #1617 | |||
| 2013-12-24 | fix #1617 | h2so5 | |
| 2013-12-24 | class/module body to honor whether value is required or not; reduce a few ↵ | Yukihiro "Matz" Matsumoto | |
| instructions for normal cases | |||
| 2013-12-24 | zero copy C literal strings in symbol table | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | remove MRB_IREP_ARRAY_INIT_SIZE which is no longer used | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | string type check based on #to_str to encourage duck typing; #1616 | Yukihiro "Matz" Matsumoto | |
| 2013-12-23 | Merge pull request #1616 from h2so5/verify-string-match | Yukihiro "Matz" Matsumoto | |
| verify the argument of String#=~ | |||
| 2013-12-24 | verify the argument of String#=~ | h2so5 | |
| 2013-12-23 | Merge pull request #1615 from crimsonwoods/remove_strong_coupling_by_khash | Yukihiro "Matz" Matsumoto | |
| Remove 'mrb_state' field from 'kh_xxx_t' structure. | |||
| 2013-12-23 | Merge pull request #1614 from h2so5/change-sym2str | Yukihiro "Matz" Matsumoto | |
| change behavior of mrb_sym2str | |||
| 2013-12-23 | Remove 'mrb_state' field from 'kh_xxx_t' structure. | crimsonwoods | |
| 'kh_xxx_t' requires 'mrb_state' to allocate, free, and compute hash value. But 'mrb_state' should not be held by 'kh_xxx_t' and 'mrb_state' should be supplied from outside. | |||
| 2013-12-23 | change behavior of mrb_sym2str | h2so5 | |
| 2013-12-20 | Merge pull request #1613 from h2so5/test-case-statements | Yukihiro "Matz" Matsumoto | |
| add some tests for case statements | |||
| 2013-12-20 | add some tests for case statements | h2so5 | |
| 2013-12-19 | Merge pull request #1612 from h2so5/node-case | Yukihiro "Matz" Matsumoto | |
| fix codegen bug in NODE_CASE | |||
| 2013-12-19 | Merge pull request #1611 from h2so5/inspect-type | Yukihiro "Matz" Matsumoto | |
| fix TypeError message | |||
| 2013-12-19 | Merge pull request #1610 from mruby-debian/for-upstream | Yukihiro "Matz" Matsumoto | |
| Fix typo from expornent to exponent | |||
| 2013-12-19 | fix codegen bug in NODE_CASE | h2so5 | |
