| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-12 | fix Segmentation fault on Struct#inspect due to recursive Struct object | takahashim | |
| 2015-01-10 | Merge pull request #2697 from cubicdaiya/use-sizeof | Yukihiro "Matz" Matsumoto | |
| Use sizeof() instead of strlen(). | |||
| 2015-01-08 | Merge pull request #2696 from furunkel/master | Yukihiro "Matz" Matsumoto | |
| Properly implement directory tasks | |||
| 2015-01-07 | Correctly handle relative paths | Julian Aron Prenner | |
| 2015-01-06 | Properly implement directory tasks | Julian Aron Prenner | |
| 2015-01-04 | Merge pull request #2694 from cubicdaiya/use-mrb-exc-new-str-lit | Yukihiro "Matz" Matsumoto | |
| Use mrb_exc_new_str_lit(). | |||
| 2015-01-03 | Use mrb_exc_new_str_lit(). | Tatsuhiko Kubo | |
| 2015-01-03 | Merge pull request #2693 from cubicdaiya/remove-duplicate-declarations | Yukihiro "Matz" Matsumoto | |
| Removed duplicated declarations. | |||
| 2015-01-03 | Removed duplicated declarations. | Tatsuhiko Kubo | |
| * `mrb_show_version()` * `mrb_show_copyright()` | |||
| 2015-01-03 | Use sizeof() instead of strlen(). | Tatsuhiko Kubo | |
| 2015-01-03 | Merge pull request #2692 from cubicdaiya/error-handling-mrb-open | Yukihiro "Matz" Matsumoto | |
| fixed error-handling for mrb_open(). | |||
| 2015-01-03 | fixed error-handling for mrb_open(). | Tatsuhiko Kubo | |
| When mrb_open() is called again, it is not checked. | |||
| 2015-01-03 | Merge pull request #2691 from deuwert/tidyup-test-time | Yukihiro "Matz" Matsumoto | |
| Round execution time | |||
| 2015-01-03 | Round execution time | Daniel Bovensiepen | |
| 2015-01-03 | Add fflush() (2) | sdottaka | |
| 2015-01-03 | Merge pull request #2690 from furunkel/master | Yukihiro "Matz" Matsumoto | |
| Set correct build dir for bins | |||
| 2015-01-02 | Set correct build dir for bins | Julian Aron Prenner | |
| 2015-01-01 | Merge pull request #2689 from cubicdaiya/remove-null-checks | Yukihiro "Matz" Matsumoto | |
| Remove redundant NULL checks for mrb_malloc(). | |||
| 2015-01-01 | Remove redundant NULL checks for mrb_malloc(). | Tatsuhiko Kubo | |
| 2014-12-27 | Merge pull request #2687 from suzukaze/avoid_block_given | Yukihiro "Matz" Matsumoto | |
| Avoid block_given? in mrbgem:enum.rb to reduce method calls | |||
| 2014-12-27 | Merge pull request #2686 from cubicdaiya/use-suitable-type | Yukihiro "Matz" Matsumoto | |
| Use suitable type. | |||
| 2014-12-27 | Avoid block_given? in mrbgem:enum.rb to reduce method calls | Jun Hiroe | |
| 2014-12-27 | Use suitable type. | Tatsuhiko Kubo | |
| 2014-12-26 | Socket::Option requires iij/mruby-pack. | Tomoyuki Sahara | |
| 2014-12-26 | don't call undefined method. fixes #15. | Tomoyuki Sahara | |
| 2014-12-26 | remove unused variables. | Tomoyuki Sahara | |
| 2014-12-26 | syscalls may return sockaddr shorter than sizeof(struct sockaddr) on Linux. | Tomoyuki Sahara | |
| 2014-12-26 | failed to add... | Tomoyuki Sahara | |
| 2014-12-26 | debug UNIXSocket and UNIXServer. | Tomoyuki Sahara | |
| 2014-12-26 | rewrite IO.for_fd. | Tomoyuki Sahara | |
| IO.for_fd should call IO#initialize to initialize the created object properly. It cannot be implemented in Ruby. | |||
| 2014-12-26 | better error message. | Tomoyuki Sahara | |
| 2014-12-25 | avoid block_given? in enum.rb to reduce method calls | Yukihiro "Matz" Matsumoto | |
| 2014-12-24 | Merge pull request #2685 from sdottaka/fix-typo-in-mruby-eval | Yukihiro "Matz" Matsumoto | |
| mruby-eval: fix typo | |||
| 2014-12-23 | khash.h: keep key/value table accessible from original hashtable during ↵ | Yukihiro "Matz" Matsumoto | |
| resize; fix #2682 | |||
| 2014-12-23 | Merge pull request #2684 from kou/fix-splat-and-multiple-assignments | Yukihiro "Matz" Matsumoto | |
| Fix splat and multiple assignments | |||
| 2014-12-23 | mruby-eval: fix typo | sdottaka | |
| 2014-12-23 | Fix splat and multiple assignments | Kouhei Sutou | |
| Case1: From variable Code: a = [1, 2, 3, 4, 5] b, c, *d = a p [a, b, c, d] Before: [[1, 2, 3, 4, 5], 1, 2, []] After: [[1, 2, 3, 4, 5], 1, 2, [3, 4, 5]] Ruby: [[1, 2, 3, 4, 5], 1, 2, [3, 4, 5]] Case2: From variables Code: a = [1, 2, 3] b = [4, 5, 6, 7] c, d, *e, f, g = *a, *b p [a, b, c, d, e, f, g] Before: [[1, 2, 3], [4, 5, 6, 7], 1, 2, [], 6, 7] After: [[1, 2, 3], [4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] Ruby: [[1, 2, 3], [4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] Case 3: "for" Code: a = [1, 2, 3, 4, 5, 6, 7] for b, c, *d, e, f in [a] do p [a, b, c, d, e, f] end Before: [[1, 2, 3, 4, 5, 6, 7], 1, 2, [], nil, nil] After: [[1, 2, 3, 4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] Ruby: [[1, 2, 3, 4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] | |||
| 2014-12-20 | Merge pull request #2681 from sdottaka/mrdb-break-windows | Yukihiro "Matz" Matsumoto | |
| mrdb: fix that break command cannot handle Windows paths | |||
| 2014-12-20 | mrdb: fix that break command cannot handle Windows paths | sdottaka | |
| Before fix: ``` $ mrdb c:\tmp\b.rb (c:\tmp\b.rb:1) break c:\tmp\b.rb:3 Class name 'c' is invalid. ``` After fix: ``` $ mrdb c:\tmp\b.rb (c:\tmp\b.rb:1) break c:\tmp\b.rb:3 Breakpoint 1: file c:\tmp\b.rb, line 3. ``` | |||
| 2014-12-19 | now retrieves number of arguments of blocks from OP_ENTER op code; close #2671 | Yukihiro "Matz" Matsumoto | |
| 2014-12-19 | block_given? should return correct value when called in blocks; close #2678 | Yukihiro "Matz" Matsumoto | |
| avoid a loop to find parent's callinfo using mrb->c->cibase[env->cioff] | |||
| 2014-12-19 | block_given? should return false on top-level; ref #2678 | Yukihiro "Matz" Matsumoto | |
| 2014-12-19 | mrdb, mirb: Add fflush() so that a external program can read output immediately. | sdottaka | |
| 2014-12-18 | Merge pull request #35 from tmtm/fix-read-create-many-objects | Tomoyuki Sahara | |
| FIX: IO#read create a large number of objects. | |||
| 2014-12-18 | FIX: IO#read create a large number of objects. | TOMITA Masahiro | |
| 2014-12-17 | String#[]: float handling merged to #2677 | Yukihiro "Matz" Matsumoto | |
| 2014-12-17 | Merge branch 'h2so5-string-nil-index' | Yukihiro "Matz" Matsumoto | |
| 2014-12-17 | try to convert not only nil but every objects to fixnums; ref #2677 | Yukihiro "Matz" Matsumoto | |
| 2014-12-17 | String#[] should reject nil index | h2so5 | |
| 2014-12-17 | Merge pull request #33 from iij/revert-32-fix-read-create-many-objects | Tomoyuki Sahara | |
| Revert "FIX: IO#read create a large number of objects." | |||
