| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-04-30 | Merge pull request #78 from MobiRuby/remove_ios_tasks | Yukihiro "Matz" Matsumoto | |
| remove ios compile tasks | |||
| 2012-05-01 | remove ios compile tasks | Yuichiro MASUI | |
| 2012-04-30 | Merge pull request #77 from bovi/master | Yukihiro "Matz" Matsumoto | |
| make clean doesn't clean complete | |||
| 2012-04-30 | Add dependency file to 'clean' target | Daniel Bovensiepen | |
| 2012-04-30 | build process restructured | Yukihiro Matsumoto | |
| 2012-04-30 | add -O3 to CFLAGS by default | Yukihiro Matsumoto | |
| 2012-04-30 | remove bit field from mrb_value | Yukihiro Matsumoto | |
| 2012-04-30 | changed type of mrb_int to plain int by default | Yukihiro Matsumoto | |
| 2012-04-30 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-04-30 | return value of mrb_obj_is_kind_of() should be int (used as boolean); fix #71 | Yukihiro Matsumoto | |
| 2012-04-28 | Merge pull request #69 from k-tsj/fix-proc-segv | Yukihiro "Matz" Matsumoto | |
| Use mrb_get_args instead of direct stack access | |||
| 2012-04-28 | use readint/readfloat instead of sscanf | Yukihiro Matsumoto | |
| 2012-04-28 | strtof() may not be available on some platform; use strtod() then cast to float | Yukihiro Matsumoto | |
| 2012-04-28 | Use mrb_get_args instead of direct stack access | Kazuki Tsujimoto | |
| 2012-04-27 | Merge pull request #61 from pbhogan/fix-warnings | Yukihiro "Matz" Matsumoto | |
| Fix various warnings | |||
| 2012-04-28 | accessing out of region; fix #68 | Yukihiro Matsumoto | |
| 2012-04-28 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-04-28 | struct RString member should not be mrb_value | Yukihiro Matsumoto | |
| 2012-04-27 | Merge pull request #67 from mattn/fix_null_deref | Yukihiro "Matz" Matsumoto | |
| Avoid to crash when "mruby -e p" | |||
| 2012-04-27 | object iv table can be NULL; close #66 | Yukihiro Matsumoto | |
| 2012-04-27 | Avoid to crash when "mruby -e p" | mattn | |
| 2012-04-27 | allow float/double switch | Yukihiro Matsumoto | |
| 2012-04-27 | initialize ARGV when program is specified by -e | Yukihiro Matsumoto | |
| 2012-04-27 | Merge pull request #64 from mattn/argv | Yukihiro "Matz" Matsumoto | |
| add ARGV. | |||
| 2012-04-27 | add ARGV. | mattn | |
| 2012-04-26 | Merge pull request #62 from javier/patch-1 | Yukihiro "Matz" Matsumoto | |
| Adding a prerequisites section | |||
| 2012-04-26 | Merge pull request #59 from mattn/fix_issue56 | Yukihiro "Matz" Matsumoto | |
| fix #56 | |||
| 2012-04-26 | Adding a prerequisites section to avoid the "bison: command not found" error | javier ramÃrez | |
| 2012-04-26 | Merge pull request #58 from mattn/use_mrb_free | Yukihiro "Matz" Matsumoto | |
| use mrb_free(). | |||
| 2012-04-26 | Remove unused variable in khash | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | size_t is unsigned and can never be < 0 | Patrick Hogan | |
| Removed to silence warning. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | mrb_read_irep should take const char * | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Fix a few casting warnings. | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Remove unused ret argument from kh_put. | Patrick Hogan | |
| It doesn't appear to serve any purpose and allows removing warning about various unused variables littered around. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | More switch statement cleanup. | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Remove a bunch of unused variables. | Patrick Hogan | |
| Removed or commented out to stop compiler whining about them. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Clean up switch statements. | Patrick Hogan | |
| Some formatting and add default label to silence warning about unhanded cases. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | mrb_ary_dup is only used by mrb_ary_sort which is removed by #if 0 | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | fix #56 | mattn | |
| 2012-04-26 | use mrb_free(). | mattn | |
| 2012-04-26 | use mrb_float instead of double | Yukihiro Matsumoto | |
| 2012-04-26 | parse.y: skip() should not ignore end-of-file; fix #55 | Yukihiro Matsumoto | |
| 2012-04-26 | do not use strdup(3) that use malloc(3) inside; should use mrb_malloc() | Yukihiro Matsumoto | |
| 2012-04-26 | supeclass type check prohibits class definition without superclass specified | Yukihiro Matsumoto | |
| 2012-04-25 | tools/mruby: multiple -e should concatenate command line args | Yukihiro Matsumoto | |
| 2012-04-25 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-04-25 | disclose mrb_top_self() and use it in mruby.c | Yukihiro Matsumoto | |
| 2012-04-24 | Merge pull request #50 from mattn/e_flag | Yukihiro "Matz" Matsumoto | |
| add -e flag. | |||
| 2012-04-24 | Merge pull request #49 from mattn/exit_code | Yukihiro "Matz" Matsumoto | |
| return 0 if code is generated. | |||
| 2012-04-25 | add -e flag. | mattn | |
