summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2016-01-14Add tests which passes all zero string to Kernel#IntegerSyohei YOSHIDA
2016-01-08fixed a problem with upvar access from instance_eval; ref #3072Yukihiro "Matz" Matsumoto
2016-01-07mruby-eval: fixed receiver value in eval context; close #3072Yukihiro "Matz" Matsumoto
2016-01-07change mrb_run related API names; compatibility macros providedYukihiro "Matz" Matsumoto
2016-01-07mruby-sprintf to use mrb_int formatting macros; ref #3076Yukihiro "Matz" Matsumoto
2016-01-02mirb: enlarge code buffer size to 4KBYukihiro "Matz" Matsumoto
2016-01-02mruby-fiber: fiber_switch() to use nesting VM when it's called from C API or ↵Yukihiro "Matz" Matsumoto
mrb_funcall(); close #3056
2015-12-31mruby-fiber: add Fiber.yield description; close #3066Yukihiro "Matz" Matsumoto
Fiber.yield cannot be called from #initialize which is called by mrb_funcall(). It is mruby limitation.
2015-12-26Merge pull request #2331 from take-cheeze/struct_testYukihiro "Matz" Matsumoto
Improve `Struct` test.
2015-12-26remove duplicated local variable declarationYukihiro "Matz" Matsumoto
2015-12-26mirb: Don't exit on Ctrl-Ckyab
2015-12-26remove execute bit from mrbgems/mruby-bin-debugger filesYukihiro "Matz" Matsumoto
2015-12-25rename include blockerYasuhiro Matsumoto
2015-12-23fix bug that doesn't stop program when execute next command.Yuhei Okazaki
2015-12-23fixed next command's comment.Yuhei Okazaki
2015-12-23add next command to mrdb.Yuhei Okazaki
2015-12-22fix build on VS2012Yasuhiro Matsumoto
2015-12-21in `peekc_n`, adjust column number after calling `nextc`Kazuho Oku
2015-12-01avoid comparison between signed and unsignedYukihiro "Matz" Matsumoto
2015-12-01C++ compiler does not like cast from pointer to enum; ref #3039Yukihiro "Matz" Matsumoto
2015-12-01should ignore block to next, break, etc. fix #3039Yukihiro "Matz" Matsumoto
2015-11-27Implemented round(double) function within mruby-time gem, for it is missing onPaolo Bosetti
VisualStudio compilers where _MSC_ver < 1800
2015-11-27Merge pull request #2950 from mattn/mirb-file-argsYukihiro "Matz" Matsumoto
mirb should take filename and arguments.
2015-11-27include changed from by quotes ("") to by brackets (<>); close #3032Yukihiro "Matz" Matsumoto
2015-11-26Merge pull request #3036 from zzak/remove-mrbtest_irepYukihiro "Matz" Matsumoto
Remove mrbtest irep
2015-11-24Remove unnecessary dependencies for assert_rb codegen and test_rbirepsZachary Scott
2015-11-24Remove mrbtest_irep from mrbtestZachary 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-24add {Array|Hash|String}.try_converttakahashim
2015-11-23Fix MRB_DISABLE_STDIO typo.Simon Génier
2015-11-20support Numeric#zero? and Numeric#nonzero?takahashim
2015-11-19Fix typo on MRB_DISABLE_STDIO.Simon Génier
2015-11-19Merge pull request #3027 from pbosetti/masterYukihiro "Matz" Matsumoto
Fix check for VisualStudio Version in mruby-math gem
2015-11-19formatting buffer should be bigger for negative dots; ref #3025Yukihiro "Matz" Matsumoto
2015-11-19binary format no longer need to preserve org_vYukihiro "Matz" Matsumoto
2015-11-19integer range check was moved to mrb_flo_to_fixnum(); ref #3025Yukihiro "Matz" Matsumoto
2015-11-19negative binary format should not be masked by 10bits; ref #3025Yukihiro "Matz" Matsumoto
2015-11-19binary sprintf should not be restricted by mrb_int size; fix #3025Yukihiro "Matz" Matsumoto
2015-11-19Fix check for VisualStudio Version in mruby-math gemPaolo Bosetti
2015-11-17DISABLE_STDIO/ENABLE_DEBUG macros to rename; close #3014Yukihiro "Matz" Matsumoto
changes: * rename DISABLE_STDIO -> MRB_DISABLE_STDIO * rename ENABLE_DEBUG -> MRB_ENABLE_DEBUG_HOOK * no more opposite macro definitions (e.g. ENABLE_STDIO, DISABLE_DEBUG). * rewrite above macro references throughout the code. * update documents
2015-11-15move Hash comparison methods to mruby-hash-ext gemYukihiro "Matz" Matsumoto
2015-10-24Ensure mrbs dependency is maintained for mruby-testZachary Scott
2015-10-22Merge pull request #2999 from sagmor/better-docsYukihiro "Matz" Matsumoto
More Docs
2015-10-21Revert "Mark core gems with mrbgem tag"Seba Gamboa
This reverts commit 5cdcce8dbddd94ecb9503a0a1d47370c4ef97177.
2015-10-21loop may return StopIteration#result; [ruby-bugs#11498]Yukihiro "Matz" Matsumoto
2015-10-21Merge pull request #2997 from furunkel/gc_cleanupYukihiro "Matz" Matsumoto
GC cleanup
2015-10-21fixed SEGV in mrb_parser_dump(NODE_COLON3)Yukihiro "Matz" Matsumoto
2015-10-20Remove obvious warnings from docsSeba Gamboa
2015-10-20Fix enumerator doc errorsSeba Gamboa
2015-10-20Mark core gems with mrbgem tagSeba Gamboa
2015-10-19Clean up GC codefurunkel