| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-03-22 | fixed silly class variable/constant confusion; #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-21 | rescue NameError from class variable access like `@@foo ||= 42`; fix #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-07 | fix dump_prefix() with wrong type argument; fix #3128 | Yukihiro "Matz" Matsumoto | |
| 2016-03-06 | Suppress a warning | Kouhei Sutou | |
| mrbgems/mruby-eval/src/eval.c: In function ‘create_proc_from_string’: mrbgems/mruby-eval/src/eval.c:152:10: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] file = "(eval)"; ^ | |||
| 2016-02-22 | too many register push for else-less condtions; fix #3117 | Yukihiro "Matz" Matsumoto | |
| 2016-02-19 | mruby-struct: copied Struct length is not initialized; fix #3114 | Yukihiro "Matz" Matsumoto | |
| 2016-02-17 | peephole optimization for LOADNIL before STRCAT; ref #3110 | Yukihiro "Matz" Matsumoto | |
| 2016-02-17 | push value for NULL AST when value is required; fix #3110 | Yukihiro "Matz" Matsumoto | |
| 2016-02-16 | syntax error in interpolated symbol; fixed #3108 | Yukihiro "Matz" Matsumoto | |
| 2016-02-15 | Fix segfault when `eval("__FILE__")` is executed | Yusuke Endoh | |
| 2016-02-12 | Fix bug in mruby-test gem. | Daniel Bovensiepen | |
| In an used build path mruby-test wasn't updating mrbtest.c in the case that the mgem selection was changed. This lead to: - a missing reference in case a GEM was removed - ignoring all new GEMs added to the build configuration This fix keeps track of the active gems and demands a rebuild of mrbtest.c in case that the gem selection changed. | |||
| 2016-01-31 | Merge pull request #3093 from retrage/retrage/dev | Yukihiro "Matz" Matsumoto | |
| Add String#rjust to mruby-string-ext | |||
| 2016-01-31 | Fix a typo | HAYASHI Kentaro | |
| su ported -> supported ^ | |||
| 2016-01-30 | Add String#rjust test to mruby-string-ext | Akira Moroo | |
| 2016-01-30 | Add String#rjust to mruby-string-ext | Akira Moroo | |
| 2016-01-21 | mruby-random: fixed wrong fixnum conversion | Yukihiro "Matz" Matsumoto | |
| 2016-01-14 | Add tests which passes all zero string to Kernel#Integer | Syohei YOSHIDA | |
| 2016-01-08 | fixed a problem with upvar access from instance_eval; ref #3072 | Yukihiro "Matz" Matsumoto | |
| 2016-01-07 | mruby-eval: fixed receiver value in eval context; close #3072 | Yukihiro "Matz" Matsumoto | |
| 2016-01-07 | change mrb_run related API names; compatibility macros provided | Yukihiro "Matz" Matsumoto | |
| 2016-01-07 | mruby-sprintf to use mrb_int formatting macros; ref #3076 | Yukihiro "Matz" Matsumoto | |
| 2016-01-02 | mirb: enlarge code buffer size to 4KB | Yukihiro "Matz" Matsumoto | |
| 2016-01-02 | mruby-fiber: fiber_switch() to use nesting VM when it's called from C API or ↵ | Yukihiro "Matz" Matsumoto | |
| mrb_funcall(); close #3056 | |||
| 2015-12-31 | mruby-fiber: add Fiber.yield description; close #3066 | Yukihiro "Matz" Matsumoto | |
| Fiber.yield cannot be called from #initialize which is called by mrb_funcall(). It is mruby limitation. | |||
| 2015-12-26 | Merge pull request #2331 from take-cheeze/struct_test | Yukihiro "Matz" Matsumoto | |
| Improve `Struct` test. | |||
| 2015-12-26 | remove duplicated local variable declaration | Yukihiro "Matz" Matsumoto | |
| 2015-12-26 | mirb: Don't exit on Ctrl-C | kyab | |
| 2015-12-26 | remove execute bit from mrbgems/mruby-bin-debugger files | Yukihiro "Matz" Matsumoto | |
| 2015-12-25 | rename include blocker | Yasuhiro Matsumoto | |
| 2015-12-23 | fix bug that doesn't stop program when execute next command. | Yuhei Okazaki | |
| 2015-12-23 | fixed next command's comment. | Yuhei Okazaki | |
| 2015-12-23 | add next command to mrdb. | Yuhei Okazaki | |
| 2015-12-22 | fix build on VS2012 | Yasuhiro Matsumoto | |
| 2015-12-21 | in `peekc_n`, adjust column number after calling `nextc` | Kazuho Oku | |
| 2015-12-01 | avoid comparison between signed and unsigned | Yukihiro "Matz" Matsumoto | |
| 2015-12-01 | C++ compiler does not like cast from pointer to enum; ref #3039 | Yukihiro "Matz" Matsumoto | |
| 2015-12-01 | should ignore block to next, break, etc. fix #3039 | Yukihiro "Matz" Matsumoto | |
| 2015-11-27 | Implemented round(double) function within mruby-time gem, for it is missing on | Paolo Bosetti | |
| VisualStudio compilers where _MSC_ver < 1800 | |||
| 2015-11-27 | Merge pull request #2950 from mattn/mirb-file-args | Yukihiro "Matz" Matsumoto | |
| mirb should take filename and arguments. | |||
| 2015-11-27 | include changed from by quotes ("") to by brackets (<>); close #3032 | Yukihiro "Matz" Matsumoto | |
| 2015-11-26 | Merge pull request #3036 from zzak/remove-mrbtest_irep | Yukihiro "Matz" Matsumoto | |
| Remove mrbtest irep | |||
| 2015-11-24 | Remove unnecessary dependencies for assert_rb codegen and test_rbireps | Zachary Scott | |
| 2015-11-24 | Remove mrbtest_irep from mrbtest | Zachary Scott | |
| If we make the core tests a dependency on the mruby-test gem, we don't need to worry about maintaining the core test irep alone. | |||
| 2015-11-24 | add {Array|Hash|String}.try_convert | takahashim | |
| 2015-11-23 | Fix MRB_DISABLE_STDIO typo. | Simon Génier | |
| 2015-11-20 | support Numeric#zero? and Numeric#nonzero? | takahashim | |
| 2015-11-19 | Fix typo on MRB_DISABLE_STDIO. | Simon Génier | |
| 2015-11-19 | Merge pull request #3027 from pbosetti/master | Yukihiro "Matz" Matsumoto | |
| Fix check for VisualStudio Version in mruby-math gem | |||
| 2015-11-19 | formatting buffer should be bigger for negative dots; ref #3025 | Yukihiro "Matz" Matsumoto | |
| 2015-11-19 | binary format no longer need to preserve org_v | Yukihiro "Matz" Matsumoto | |
