| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-25 | add Exception#backtrace | wanabe | |
| 2013-08-24 | Fix a problem of 'z' option and shared string | h2so5 | |
| 2013-08-23 | add `cmd` (command output expression). | Tomoyuki Sahara | |
| 2013-08-23 | Check type of arguments for #start_with and #end_with. | Tomoyuki Sahara | |
| 2013-08-23 | add mrb_string_type(). | Tomoyuki Sahara | |
| 2013-08-22 | Refactor of String#start_with? comparison logic. | Frederick John Milens III | |
| 2013-08-22 | Refactor of String#end_with? comparison logic. | Frederick John Milens III | |
| 2013-08-22 | Fix for string-length-related issue in String#end_with? logic. | Frederick John Milens III | |
| 2013-08-22 | Added test case for String#end_with? with string of length 2. | Frederick John Milens III | |
| 2013-08-22 | Fix for string-length-related issue in String#start_with? logic. | Frederick John Milens III | |
| 2013-08-22 | Added test case for String#start_with? with string of length 1. | Frederick John Milens III | |
| 2013-08-21 | ARGS_XXX -> MRB_ARGS_XXX | Tomoyuki Sahara | |
| 2013-08-19 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-19 | Merge pull request #1481 from suichu/patch | Yukihiro "Matz" Matsumoto | |
| add x86_64-darwin host platform. | |||
| 2013-08-19 | add x86_64-darwin host platform. | taku toyama | |
| 2013-08-19 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-18 | Merge pull request #1480 from wanabe/patch-1 | Yukihiro "Matz" Matsumoto | |
| android doesn't have log2 | |||
| 2013-08-19 | android doesn't have log2 | wanabe | |
| 2013-08-18 | Merge pull request #1479 from chenyukang/remove_return | Yukihiro "Matz" Matsumoto | |
| remove a unnecessary return | |||
| 2013-08-18 | remove unnecessary return | Yukang | |
| 2013-08-15 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | Merge pull request #1475 from carsonmcdonald/fixparseerror | Yukihiro "Matz" Matsumoto | |
| Return when block argument error | |||
| 2013-08-14 | Fix return block argument error | Carson McDonald | |
| 2013-08-15 | remove Class#alloc method | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | use newer DATA API | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | remove Ruby defined Class#new | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | remove alloc from Time class | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | redesign mruby/data.h API; use DATA_PTR() for raw data pointer, ↵ | Yukihiro "Matz" Matsumoto | |
| DATA_GET_PTR() to type safe retrieval (TypeError will be raised), DATA_CHECK_GET_PTR() to get nil if type mismatched | |||
| 2013-08-15 | implement Class.new in C again | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | add compatibility macro mrb_class_new_instance() | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | check d->type before accessing d->type->dfree; #1474 #858 | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | define allocation method for Time class; close #1474 | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | Merge pull request #1473 from carsonmcdonald/fixclassnew | Yukihiro "Matz" Matsumoto | |
| Fix Class#new call to inherited and add a couple Class tests | |||
| 2013-08-14 | longjmp too far when exception raised from C function called from mrb_funcall() | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | fix a possible address family mismatch. | Tomoyuki Sahara | |
| 2013-08-13 | Test for Class#inherited | Carson McDonald | |
| 2013-08-13 | Fix inerited to inherited | Carson McDonald | |
| 2013-08-13 | Add test for Class.new(*args) | Carson McDonald | |
| 2013-08-13 | Merge pull request #1472 from JackDanger/jackdanger/add-line-numbers-to-irb | Yukihiro "Matz" Matsumoto | |
| Adding line numbers to the output of mirb. | |||
| 2013-08-13 | Merge pull request #1470 from carsonmcdonald/morefixfor1467 | Yukihiro "Matz" Matsumoto | |
| Tests and another fix for issue #1467 | |||
| 2013-08-13 | Merge pull request #1469 from carsonmcdonald/removedebug | Yukihiro "Matz" Matsumoto | |
| Remove debug printf | |||
| 2013-08-14 | v4/v6 fallback for TCP. | Tomoyuki Sahara | |
| 2013-08-13 | Adding line numbers to the output of mirb. | Jack Danger Canty | |
| Before: > "hi" hi > d (mirb):1: undefined method 'd' for main (NoMethodError) > d (mirb):1: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 1: unterminated string meets end of file After > "hi" hi > d (mirb):2: undefined method 'd' for main (NoMethodError) > d (mirb):3: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 5: unterminated string meets end of file | |||
| 2013-08-13 | Add two tests for issue #1467 | Carson McDonald | |
| 2013-08-13 | This check and class change is redundant because it is done in ↵ | Carson McDonald | |
| class.c#mrb_include_module | |||
| 2013-08-13 | Remove debug printf | Carson McDonald | |
| 2013-08-14 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | ci->target_class should point to ICLASS, not MODULE; close #1467 | Yukihiro "Matz" Matsumoto | |
| 2013-08-13 | Merge pull request #1468 from suzukaze/add-array-test | Yukihiro "Matz" Matsumoto | |
| I add ISO test '15.2.12.3' included modules in Arrray | |||
