| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-10 | Merge pull request #1655 from pbosetti/master1.0.0 | Yukihiro "Matz" Matsumoto | |
| Added rewrite of Array#[] to mruby-array-ext gem | |||
| 2014-01-10 | Merge pull request #1656 from h2so5/string-length-utf8 | Yukihiro "Matz" Matsumoto | |
| String#length should be an alias of String#size | |||
| 2014-01-10 | String#length should be an alias of String#size | h2so5 | |
| 2014-01-10 | Added rewrite of Array#[] to mruby-array-ext gem, so that arrays can be sliced | Paolo Bosetti | |
| with Ranges (as a[1..-2]) | |||
| 2014-01-09 | Merge pull request #1654 from iij/pr-not-match-operator | Yukihiro "Matz" Matsumoto | |
| add operator "!~". | |||
| 2014-01-09 | Merge pull request #1653 from iij/pr-fix-iso-ref-string-match | Yukihiro "Matz" Matsumoto | |
| fix ISO reference number of String#=~. | |||
| 2014-01-10 | add operator "!~". | Tomoyuki Sahara | |
| 2014-01-10 | fix ISO reference number of String#=~. | Tomoyuki Sahara | |
| 2014-01-08 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-01-08 | adjust lineno after continuing script files using mrb_partial_hook; close #1652 | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | Merge pull request #1650 from cremno/remove-str_mod_check | Yukihiro "Matz" Matsumoto | |
| string.c: remove str_mod_check | |||
| 2014-01-07 | Merge pull request #1651 from h2so5/string-reverse-utf8 | Yukihiro "Matz" Matsumoto | |
| add String#reverse, String#reverse! for UTF-8 | |||
| 2014-01-07 | Merge pull request #1649 from cremno/include-cleanup | Yukihiro "Matz" Matsumoto | |
| remove superfluous includes | |||
| 2014-01-08 | add String#reverse, String#reverse! for UTF-8 | h2so5 | |
| 2014-01-07 | string.c: remove str_mod_check | cremno | |
| Clang 3.4 emits '-Wunused-function' - and it's really unused! But according to the description this seems to be a bug: >Warn whenever a static function is declared but not defined or >a non-inline static function is unused. This warning is enabled by -Wall. Source: <http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html> | |||
| 2014-01-07 | remove superfluous includes | cremno | |
| - reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style) | |||
| 2014-01-08 | skip "trace:" header if no backtrace line exists | Yukihiro "Matz" Matsumoto | |
| 2014-01-08 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-01-08 | dump.c: wrong filename table dump for multiple script files; close #1648 | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | Merge pull request #1647 from mattn/remove_duplicate_test_for_mruby_string_utf8 | Yukihiro "Matz" Matsumoto | |
| Remove duplicate test for mruby-string-utf8 | |||
| 2014-01-07 | Remove duplicate test | mattn | |
| 2014-01-07 | mruby-string-utf8: redefine String#size for UTF-8 string; #1646 | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | mruby-string-utf8: UTF-8 string may contail NUL; #1646 | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | Merge branch 'mruby-string-utf8' of https://github.com/mattn/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| mattn-mruby-string-utf8 | |||
| 2014-01-07 | Add mruby-string-utf8 | mattn | |
| 2014-01-07 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-01-06 | Merge pull request #1645 from iij/pr-case-expression-test | Yukihiro "Matz" Matsumoto | |
| tests for "case" expression. | |||
| 2014-01-06 | small refactoring (dedup mrb_vm_cv_set) | Yukihiro "Matz" Matsumoto | |
| 2014-01-06 | small cosmetic variable renaming | Yukihiro "Matz" Matsumoto | |
| 2014-01-06 | adjust proc->target_class according to surrounding proc->target_class; based ↵ | Yukihiro "Matz" Matsumoto | |
| on a patch from @Fleurer; close #1627 | |||
| 2014-01-06 | tests for "case" expression. | Tomoyuki Sahara | |
| 2014-01-05 | Merge pull request #1644 from carsonmcdonald/testraiseinensure | Yukihiro "Matz" Matsumoto | |
| Test for raise in ensure | |||
| 2014-01-05 | Merge pull request #1643 from take-cheeze/remove_unnecessary_depedency | Yukihiro "Matz" Matsumoto | |
| Reduce unnecessary mrbgems full test rebuild. | |||
| 2014-01-05 | Test for raise in ensure | Carson McDonald | |
| 2014-01-05 | need not to initialize ci->err at toplevel | Yukihiro "Matz" Matsumoto | |
| 2014-01-05 | avoid decrimenting eidx out of ecall() | Yukihiro "Matz" Matsumoto | |
| 2014-01-05 | execute ensure clause correctly without OP_EPOP | h2so5 | |
| 2014-01-04 | Merge pull request #1640 from carsonmcdonald/splatwhentest | Yukihiro "Matz" Matsumoto | |
| Test case statement with splat | |||
| 2014-01-04 | Test case statement with splat | Carson McDonald | |
| 2014-01-04 | object_id may not return Fixnum (ISO says Integer), since intptr_t may be ↵ | Yukihiro "Matz" Matsumoto | |
| bigger than Fixnum, so type check for Numeric; ref #1630 | |||
| 2014-01-04 | should splat and iterate elements when "*ary" speficied in the case-when ↵ | Yukihiro "Matz" Matsumoto | |
| clause; close #1627 | |||
| 2014-01-04 | pop ensure stack before execution; close #1638 | Yukihiro "Matz" Matsumoto | |
| 2014-01-04 | always clear ci->err | Yukihiro "Matz" Matsumoto | |
| 2014-01-04 | quicker release of arena after ensure calls | Yukihiro "Matz" Matsumoto | |
| 2014-01-04 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-01-03 | Merge pull request #1639 from h2so5/macro-ci-err | Yukihiro "Matz" Matsumoto | |
| use macros for assignments to ci->err | |||
| 2014-01-03 | mrb_ary_splat() to call #to_a | Yukihiro "Matz" Matsumoto | |
| 2014-01-03 | use macros for assignments to ci->err | h2so5 | |
| 2014-01-02 | Merge pull request #1634 from cremno/use-mrb_fixnum_p | Yukihiro "Matz" Matsumoto | |
| tiny word boxing optimization | |||
| 2014-01-02 | Merge pull request #1632 from cremno/superfluous-return | Yukihiro "Matz" Matsumoto | |
| remove superfluous return in codedump_all | |||
