| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-03 | use tempfile module | take_cheeze | |
| 2014-03-03 | add test to check striped binary works correctly | take_cheeze | |
| 2014-03-03 | run enabled gem's bintest only | take_cheeze | |
| 2014-03-03 | Kernel#send does not use mrb_funcall anymore for most cases; ref #1680 | Yukihiro "Matz" Matsumoto | |
| 2014-03-03 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-03 | rescue clause should understand splats; close #1786 | Yukihiro "Matz" Matsumoto | |
| 2014-03-03 | Merge pull request #1785 from tmash06/fix_include_guard_style | Yukihiro "Matz" Matsumoto | |
| fix include guard style. | |||
| 2014-03-03 | fix include guard style. | Tatsuya Matsumoto | |
| 2014-03-02 | Merge pull request #1784 from tmash06/fix_memory_leak_in_mruby-random | Yukihiro "Matz" Matsumoto | |
| fix a memory leak in mruby-random. | |||
| 2014-03-02 | fix a memory leak in mruby-random. | Tatsuya Matsumoto | |
| 2014-03-02 | Merge pull request #1780 from monaka/pr-add-ssh-protocol-support-for-bitbucket | Yukihiro "Matz" Matsumoto | |
| Add ssh protocol support for bitbucket. | |||
| 2014-03-02 | Merge pull request #1779 from akuroda/pr_test_string_times | Yukihiro "Matz" Matsumoto | |
| add tests for String#* | |||
| 2014-03-02 | add tests for String#* | Akira Kuroda | |
| add test cases for 0 and -1 | |||
| 2014-03-02 | Add ssh protocol support for bitbucket. | Masaki Muranaka | |
| 2014-03-02 | Merge pull request #1777 from take-cheeze/command_improvement | Yukihiro "Matz" Matsumoto | |
| Command improvements. | |||
| 2014-03-02 | remove explicit use of g++ | take_cheeze | |
| 2014-03-02 | use shallow clone in git gem | take_cheeze | |
| 2014-03-02 | use c++ compiler to link when c++ abi is enabled | take_cheeze | |
| 2014-03-02 | allow command like "ccache gcc" | take_cheeze | |
| 2014-03-02 | wrap function prototype by extern "C" | Yukihiro "Matz" Matsumoto | |
| 2014-03-02 | add const to char* to pacify warnings for string litral to char* conversion | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | clear exc_catched before jumping to L_RAISE | take_cheeze | |
| 2014-03-01 | define mrbconfs on all compiler | take_cheeze | |
| 2014-03-01 | define __STDC_* macros in y.tab.cxx too | take_cheeze | |
| 2014-03-01 | wrap scope with do {} while() | take_cheeze | |
| 2014-03-01 | revert wrong build_config.rb | take_cheeze | |
| 2014-03-01 | use g++ to link | take_cheeze | |
| 2014-03-01 | name c++ abi build | take_cheeze | |
| 2014-03-01 | move jmpbuf_id to generated file | take_cheeze | |
| 2014-03-01 | fix compile error of min/max macro | take_cheeze | |
| 2014-03-01 | add cxx_abi travis test | take_cheeze | |
| 2014-03-01 | fix compile error | take_cheeze | |
| 2014-03-01 | support c++ exception | take_cheeze | |
| 2014-03-01 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | allow send method not to call mrb_funcall if calling method is implemented ↵ | Yukihiro "Matz" Matsumoto | |
| in Ruby; fix #1680 ref #1765 | |||
| 2014-03-01 | should build "all" before "test"; close #1774 | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | exception in fiber should make resume to raise in parent fiber context; ↵ | Yukihiro "Matz" Matsumoto | |
| close #1765 | |||
| 2014-03-01 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | revert changes to mrbconf.h | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | Merge branch 'issues/comment_style' of https://github.com/cubicdaiya/mruby ↵ | Yukihiro "Matz" Matsumoto | |
| into cubicdaiya-issues/comment_style | |||
| 2014-03-01 | Merge pull request #1773 from tmash06/remove_unnecessary_gitkeep | Yukihiro "Matz" Matsumoto | |
| remove unnecessary .gitkeep | |||
| 2014-03-01 | need to initialize flags for pooled strings; close #1768 | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | add _FLAG to SET_SHARED macros; ref #1750 | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | Merge branch 'array-shared-macro' of https://github.com/ksss/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| ksss-array-shared-macro | |||
| 2014-03-01 | remove unnecessary .gitkeep | Tatsuya Matsumoto | |
| 2014-03-01 | use C style comments instead of C++ style comments | cubicdaiya | |
| According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines. | |||
| 2014-03-01 | Merge pull request #1771 from take-cheeze/add_author | Yukihiro "Matz" Matsumoto | |
| Please add me to the author. | |||
| 2014-03-01 | Please add me to the author. | take_cheeze | |
| 2014-03-01 | mrb_fiber_yield() is available now; you have to link mruby-fiber mrbgem to ↵ | Yukihiro "Matz" Matsumoto | |
| use the function; there's no function available to create new fiber from C (countapart of Lua's lua_newthread), but that's because you cannot create a new fiber from C due to mruby C API design limitation. define your method to create fibers in Ruby; close #1269 | |||
| 2014-02-28 | cancel 313f6b; add fallthrough comment | Yukihiro "Matz" Matsumoto | |
