- 17 Feb, 2016 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 16 Feb, 2016 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
[255, 255, 255, 255, 255].hash raises "can't convert Float into Integer"
-
Yukihiro "Matz" Matsumoto authored
Fix segfault when `eval("__FILE__")` is executed
-
- 15 Feb, 2016 2 commits
-
-
Yusuke Endoh authored
-
Yusuke Endoh authored
-
- 11 Feb, 2016 13 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix bug in mruby-test gem (fix #3094)
-
Yukihiro "Matz" Matsumoto authored
Add more limitations
-
Daniel Bovensiepen authored
-
Daniel Bovensiepen authored
- defined? - alias on global variables - Operator modification - Kernel.binding missing
-
Daniel Bovensiepen authored
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.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Add toolchain support for OpenWRT
-
Yukihiro "Matz" Matsumoto authored
Addition to mruby limitation documentation
-
Daniel Bovensiepen authored
-
Daniel Bovensiepen authored
-
Daniel Bovensiepen authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Limitations
-
- 10 Feb, 2016 2 commits
-
-
Daniel Bovensiepen authored
-
Daniel Bovensiepen authored
-
- 05 Feb, 2016 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 04 Feb, 2016 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix missing dependency on mruby-print to support 'puts'
-
- 03 Feb, 2016 1 commit
-
-
Hugo Logmans authored
-
- 31 Jan, 2016 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Add String#rjust to mruby-string-ext
-
Yukihiro "Matz" Matsumoto authored
Fix a typo
-
- 30 Jan, 2016 3 commits
-
-
HAYASHI Kentaro authored
su ported -> supported ^
-
Akira Moroo authored
-
Akira Moroo authored
-
- 28 Jan, 2016 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
protect NoMethodError from calling to_hash in replace
-
- 27 Jan, 2016 1 commit
-
-
Sayed Abdelhaleem authored
-
- 21 Jan, 2016 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix SEGV by stack extension in mrb_get_args()
-
Kouhei Sutou authored
mrb_get_args() keeps pointer of the current stack. But address of the current stack maybe changed by method call. 'i' format character calls #to_i when the argument isn't integer but has #to_i. Here is a code that may call #to_i in mrb_get_args(): case 'i': // ... default: *p = mrb_fixnum(mrb_Integer(mrb, ARGV[arg_i])); break; // ... Here is a code #to_i is called: class X def initialize(i) @i = i end def to_i @i end end [][X.new(0), 0] # X#to_i is called So, mrb_get_args() shouldn't keep pointer and use it. mrb_get_args() should always refer mrb->ci->stack to use valid address of the current stack.
-
- 20 Jan, 2016 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Small grammar fix
-