| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-10-08 | add some methods to Symbol | skandhas | |
| 2013-10-05 | simplify stack_clear() | Yukihiro "Matz" Matsumoto | |
| 2013-10-05 | Disable implicit integer conversion in mrb_get_args | h2so5 | |
| 2013-10-03 | Merge pull request #1528 from Ahti/master | Yukihiro "Matz" Matsumoto | |
| fix no multiline strings in mirb | |||
| 2013-10-04 | fix no multiline strings in mirb | Lukas Stabe | |
| 2013-10-03 | fix RSTRING_PTR usage. | Tomoyuki Sahara | |
| 2013-10-02 | Merge pull request #4 from pbosetti/master | Tomoyuki Sahara | |
| Truncate the file to zero length on opening when "w" mode is set | |||
| 2013-10-02 | Merge branch 'master' of https://github.com/iij/mruby-io | Paolo Bosetti | |
| 2013-10-02 | Truncate file on File.open(file, "w") | Paolo Bosetti | |
| 2013-10-02 | Merge pull request #1522 from bovi/patch-1 | Yukihiro "Matz" Matsumoto | |
| Improve Grammar of Documentation | |||
| 2013-10-01 | Merge pull request #1523 from wrl/relative-gembox-nokeyword | Yukihiro "Matz" Matsumoto | |
| Implement gembox-relative gemdir paths | |||
| 2013-10-01 | Fix for caller_dir relative gems | William Light | |
| 2013-10-01 | Implement gembox-relative gemdir paths | William Light | |
| In the case where a relative path is specified to a gembox from build_config.rb, it was previously tricky to specify relative gem paths from inside that gembox. For example, consider a project in which mruby is checked out as a submodule in the project root: +- project_root | +- mruby/ | | | +- build_config.rb | | | +- ... | +- my_gembox/ | +- my_gembox.gembox | +- my_gem/ | +- mrbgem.rake | +- ... If build_config.rb refers to my_gembox with a relative path, it's difficult for my_gembox to then refer to my_gem. With this proposed change, my_gembox.gembox can look like this: MRuby::GemBox.new do |conf| conf.gem "my_gem" end | |||
| 2013-10-02 | Improve Grammar of Documentation | Daniel Bovensiepen | |
| 2013-10-01 | Merge pull request #1520 from pbosetti/master | Yukihiro "Matz" Matsumoto | |
| Added test for inline arrays longer than 126 elements. | |||
| 2013-10-01 | Merge pull request #1521 from Fleurer/issue-1519 | Yukihiro "Matz" Matsumoto | |
| fix #1519 | |||
| 2013-10-01 | fix #1519 | fleuria | |
| the 128th element in an array literal would trigger a corner case on splat mode checking, in which mruby will splat an that value into its parent array. the issue was masked by the fact of ary_concat() also accept non-array value: 1.9.3p286 :002> a = 1 1.9.3p286 :003> [*a] => [1] the expected behaviour should be OP_ARYPUSH the 128th element, instead of splat it by OP_ARYCAT. | |||
| 2013-10-01 | Added test for inline arrays longer than 126 elements. | Paolo Bosetti | |
| 2013-09-30 | syswrite must write to fd2 if it is properly set. | Tomoyuki Sahara | |
| closes #3. | |||
| 2013-09-30 | style | Tomoyuki Sahara | |
| 2013-09-30 | don't retry when we cannot fork(2). | Tomoyuki Sahara | |
| EAGAIN indicates the system is under heavy load. Retrying make things worse. | |||
| 2013-09-30 | fix descriptor leakage. | Tomoyuki Sahara | |
| 2013-09-30 | add File#flock. | Tomoyuki Sahara | |
| 2013-09-29 | Merge pull request #1518 from dmajkic/master | Yukihiro "Matz" Matsumoto | |
| Remove function delaration not implemented in code | |||
| 2013-09-28 | Remove function delaration not implemented in code | Dusan D. Majkic | |
| 2013-09-26 | Merge pull request #1515 from mynz/master | Yukihiro "Matz" Matsumoto | |
| fix build error when ENABLE_DEBUG is defined | |||
| 2013-09-26 | fix build error when ENABLE_DEBUG is defined | Atsushi_Morimoto | |
| 2013-09-26 | remove duplicated white spaces. | Tomoyuki Sahara | |
| 2013-09-26 | suppress a warning and fix a possible segv. | Tomoyuki Sahara | |
| 2013-09-25 | Merge pull request #2 from pbosetti/master | Tomoyuki Sahara | |
| Catch up with API changes on mrb_intern() -> mrb_intern_cstr() | |||
| 2013-09-25 | Merge pull request #1509 from FUKUZAWA-Tadashi/heredoc-bugfix | Yukihiro "Matz" Matsumoto | |
| fix bugs on Heredocument | |||
| 2013-09-25 | Catch up with API changes on mrb_intern() -> mrb_intern_cstr() | Paolo Bosetti | |
| 2013-09-25 | change type of mrb->c->status from uint8_t to enum mrb_fiber_state; #1511 | Yukihiro "Matz" Matsumoto | |
| 2013-09-24 | Merge pull request #1512 from wasabiz/eliminate-mrb-intern | Yukihiro "Matz" Matsumoto | |
| eliminate use of traditional intern API (mrb_intern()) completely | |||
| 2013-09-23 | fix a bug introduced in prev commit | Yuichi Nishiwaki | |
| 2013-09-23 | eliminate use of traditional intern API (mrb_intern()) completely | Yuichi Nishiwaki | |
| 2013-09-23 | support freebsd versions without log2 function | Julien Ammous | |
| 2013-09-22 | fix bugs on Heredocument | FUKUZAWA-Tadashi | |
| - heredoc in array literal - heredoc in args - heredoc in expression expand | |||
| 2013-09-21 | Merge pull request #1507 from ktaobo/yield-self | Yukihiro "Matz" Matsumoto | |
| Use self for the given proc in mrb_yield | |||
| 2013-09-21 | rename voidp to cptr | Yukihiro "Matz" Matsumoto | |
| 2013-09-21 | voidp should be an Object; close #1508 | Yukihiro "Matz" Matsumoto | |
| 2013-09-21 | index to mrb_digitmap[] should always be positive | Yukihiro "Matz" Matsumoto | |
| 2013-09-20 | Use self for the given proc | Keita Obo | |
| 2013-09-20 | incomplete renaming node->filename -> node->filename_index | Yukihiro "Matz" Matsumoto | |
| 2013-09-20 | remove unreferenced local variables caused by mrb_assert() | Yukihiro "Matz" Matsumoto | |
| 2013-09-20 | rename node->filename to node->filename_index | Yukihiro "Matz" Matsumoto | |
| 2013-09-20 | refactor genop_peep(); ref #1505 | Yukihiro "Matz" Matsumoto | |
| 2013-09-19 | Merge pull request #1505 from ktaobo/return-breaks-self | Yukihiro "Matz" Matsumoto | |
| Fixed self value in a block is changed with return value | |||
| 2013-09-18 | Merge pull request #1503 from digitaltom/master | Yukihiro "Matz" Matsumoto | |
| remove executable bit from include/mruby/dump.h file | |||
| 2013-09-18 | Fix self value in a block is changed with return value for Fixnum, nil, ↵ | Keita Obo | |
| instance variable. Fix #1504 | |||
