| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-03 | small style fix | Yukihiro "Matz" Matsumoto | |
| 2013-11-03 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-11-02 | Added support for Random as an argument to shuffle and shuffle!. Refactored ↵ | Emiliano Lesende | |
| random gem to use DATA instance type and hold mt_state inside the DATA_PTR instead of in an instance variable. | |||
| 2013-11-02 | change return value from mrb_generate_code() | Yukihiro "Matz" Matsumoto | |
| 2013-11-01 | Added shuffle and shuffle! to the Array class in the Random gem. | Emiliano Lesende | |
| 2013-10-30 | Merge pull request #1510 from schmurfy/freebsd_fix | Yukihiro "Matz" Matsumoto | |
| fixed compilation on freebsd releases witout log2 function | |||
| 2013-10-08 | add some methods to Symbol | skandhas | |
| 2013-10-04 | fix no multiline strings in mirb | Lukas Stabe | |
| 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-21 | rename voidp to cptr | Yukihiro "Matz" Matsumoto | |
| 2013-08-26 | Merge branch 'mruby' into pr-typeerror-string-start-end-with | Tomoyuki Sahara | |
| Conflicts: mrbgems/mruby-string-ext/src/string.c mrbgems/mruby-string-ext/test/string.rb | |||
| 2013-08-26 | Merge pull request #1485 from fjmilens3/string_end_with | Yukihiro "Matz" Matsumoto | |
| Bug in String#end_with? resulting from incorrect length determination | |||
| 2013-08-23 | Check type of arguments for #start_with and #end_with. | 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-19 | android doesn't have log2 | wanabe | |
| 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-14 | define allocation method for Time class; close #1474 | Yukihiro "Matz" Matsumoto | |
| 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-07 | don't use str{cpy,cat} in mruby and mrbc | Cremno | |
| The length of each string is known. It should be used. | |||
| 2013-08-07 | rename mrb_value_p() to mrb_ptr() since _p means predicate in mruby source | Yukihiro "Matz" Matsumoto | |
| 2013-08-03 | add read barrier to value.p | Yuichi Nishiwaki | |
| API changes: - value.p must be accessed via mrb_value_p macro - value.p must be mutated via MRB_SET_VALUE_P macro | |||
| 2013-08-05 | muby-time: use mrb_free directly | Blaž Hrastnik | |
| 2013-08-04 | Improve test of mruby-objectspace-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-toplevel-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-symbol-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-string-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-range-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-proc-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-object-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-numeric-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-hash-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Improve test of mruby-enum-ext GEM | Daniel Bovensiepen | |
| 2013-08-04 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-04 | should protect resume fiber by write barrier; close #1434 | Yukihiro "Matz" Matsumoto | |
| 2013-08-03 | Set filename like irb | Carson McDonald | |
| 2013-07-31 | add new mrbgem mruby-exit | Yukihiro "Matz" Matsumoto | |
| 2013-07-27 | I replace 0 with NULL because struct pointer be should set NULL in. | Jun Hiroe | |
| 2013-07-23 | Merge pull request #1402 from mattn/check_home_is_null | Yukihiro "Matz" Matsumoto | |
| Check home is null | |||
| 2013-07-23 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2013-07-23 | Merge pull request #1399 from carsonmcdonald/readlinelinkfix | Yukihiro "Matz" Matsumoto | |
| If readline is enabled add readline to libraries to link | |||
| 2013-07-23 | Check home is null | mattn | |
| 2013-07-23 | "spec.author" is better for single-author gems. | Tomoyuki Sahara | |
| "spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/ | |||
| 2013-07-22 | If readline is enabled add readline to libraries to link | Carson McDonald | |
