| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2013-07-22 | Move home variable into readline ifdef | Carson McDonald | |
| 2013-07-18 | Use env[USERPROFILE] for Windows | kyab | |
| 2013-07-18 | Save mirb history when readline enabled | kyab | |
| 2013-07-16 | Merge pull request #1388 from carsonmcdonald/toplevelwarnfix | Yukihiro "Matz" Matsumoto | |
| Fix warning by making call explicit | |||
| 2013-07-16 | Fix warning by making call explicit | Carson McDonald | |
| 2013-07-15 | Repalace int with mrb_bool because a return value is boolean. | Jun Hiroe | |
| 2013-07-14 | Merge pull request #1376 from suzukaze/replace-mrb_intern-in-random.c | Yukihiro "Matz" Matsumoto | |
| Replace mrb_intern() with mrb_intern2() in random.c | |||
| 2013-07-14 | Replace mrb_intern() with mrb_intern2() in random.c | Jun Hiroe | |
| 2013-07-14 | Replace mrb_intern() with mrb_intern2() or mrb_intern_cstr(). | Jun Hiroe | |
| 2013-07-11 | Merge branch 'kyab-toplevel_ext' | Yukihiro "Matz" Matsumoto | |
| 2013-07-11 | add mruby-toplevel-ext as default | Yukihiro "Matz" Matsumoto | |
| 2013-07-11 | add private/protected/public to main | Yukihiro "Matz" Matsumoto | |
| 2013-07-02 | Add include for toplevel self(main) | kyab | |
| 2013-07-02 | Merge pull request #1328 from h2so5/add-object-instance-exec | Yukihiro "Matz" Matsumoto | |
| Add Object#instance_exec | |||
| 2013-07-01 | Fix signed/unsigned warning. | Carson McDonald | |
| 2013-07-01 | Add Object#instance_exec | h2so5 | |
| 2013-06-29 | Merge pull request #1304 from iij/pr_nil_methods | Yukihiro "Matz" Matsumoto | |
| add nil.to_a, nil.to_f, nil.to_i methods | |||
| 2013-06-28 | add nil.to_a, nil.to_f, nil.to_i methods | Akira Yumiyama | |
| 2013-06-27 | Visual Studio 2013 support + strtof + inline | Cremno | |
| - VC12 has better C99 library support due to C++11 - defined strtof for VC11 or older - define "inline" only if the C compiler is used | |||
| 2013-06-18 | fix typo: Tus -> Tue. | Tomoyuki Sahara | |
| 2013-06-06 | do not specify implementation dependant exception class names in fiber test | Yukihiro "Matz" Matsumoto | |
