summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-06-16Merge pull request #2835 from kext/time-rounding-precisionYukihiro "Matz" Matsumoto
Time rounding precision
2015-06-16Changed llrint to llroundLukas Joeressen
2015-06-15Rounding errors could make time_alloc impreciseLukas Joeressen
2015-06-14Merge pull request #2833 from cremno/call-mrb_inspectYukihiro "Matz" Matsumoto
refactor code to call mrb_inspect() instead
2015-06-13refactor code to call mrb_inspect() insteadcremno
mrb_inspect() also calls mrb_obj_as_string() after #inspect to ensure the mrb_value is a string.
2015-06-10Merge pull request #2830 from hiroshiyui/mirb-termcap-compatYukihiro "Matz" Matsumoto
Remove the unused libterminfo detection code.
2015-06-10Remove unused libterminfo detection code.Huei-Horng Yo
The detection code is unused even on OpenBSD 5.7, because of the standard installation is libtermcap be installed, not libterminfo. This fixes #2829 Tested on Arch Linux (x86_64) & OpenBSD 5.7 (amd64). Signed-off-by: Huei-Horng Yo <[email protected]>
2015-06-10Merge pull request #2829 from hiroshiyui/mirb-termcap-compatYukihiro "Matz" Matsumoto
Detect if ncurses' backend is terminfo or termcap.
2015-06-09Detect if ncurses' backend is terminfo or termcap. fixes #2662Huei-Horng Yo
Borrowed from @mattn's code at: https://github.com/mruby/mruby/issues/2662#issuecomment-65535705 Signed-off-by: Huei-Horng Yo <[email protected]>
2015-06-08Merge pull request #2828 from iij/pr-string-sub-backslashYukihiro "Matz" Matsumoto
gsub/sub supports back references in substitutes. fixes #2816.
2015-06-08gsub/sub supports back references in substitutes. fixes #2816.Tomoyuki Sahara
This implementation is compatible with CRuby's String#gsub/sub except \1 ... \9 and \+. They are useless without Regexp library.
2015-06-06Merge pull request #2827 from mruby-debian/fix-upstreamYukihiro "Matz" Matsumoto
Fix build on MIPS of linux
2015-06-06Merge pull request #2826 from Mav7/masterYukihiro "Matz" Matsumoto
Added some documentation for some of the functions found in array.h.
2015-06-06Fix build on MIPS of linuxNobuhiro Iwamatsu
MIPS of Linux platform is supported frexpl(3). This fixes to use the frexpl that are provided with gcc if user wants to build on MIPS of Linux platform. Signe-doff-by: Nobuhiro Iwamatsu <[email protected]>
2015-06-05Update array.h.mdRalph Desir
2015-06-05Update value.h.mdRalph Desir
2015-06-05Update array.h.mdRalph Desir
2015-06-05Added more function documentation for arrays.Ralph Desir
2015-06-05Update array.h.mdRalph Desir
2015-06-05Update array.h.mdRalph Desir
2015-06-04Update array.h.mdRalph Desir
2015-06-04Update array.h.mdRalph Desir
2015-06-04Adding an array readme markdown.Mav7
2015-06-04testing something.Mav7
2015-06-04Update README.mdRalph Desir
2015-06-04Adding an array readme markdown.Mav7
2015-06-03Merge pull request #2823 from cremno/remove-unnecessary-mrb_immediate_pYukihiro "Matz" Matsumoto
remove unnecessary mrb_immediate_p()
2015-06-03Merge pull request #2822 from cremno/directly-call-ary_new_capaYukihiro "Matz" Matsumoto
directly call ary_new_capa()
2015-06-03Merge pull request #2821 from cremno/push-only-after-op_getconst-in-val-modeYukihiro "Matz" Matsumoto
push only after OP_GETCONST in VAL mode
2015-06-02remove unnecessary mrb_immediate_p()cremno
`!mrb_array_p(ary2)` and `mrb_type(obj) != MRB_TT_DATA` are sufficient.
2015-06-02directly call ary_new_capa()cremno
2015-06-02push only after OP_GETCONST in VAL mode; ref #2769cremno
2015-06-01update lex.def using gperf 3.0.4Yukihiro "Matz" Matsumoto
2015-06-01Compile mruby compiler as mrbgem.take_cheeze
Compiler codes is moved to "mruby-compiler". Executable `mrbc` is moved to "mruby-bin-mrbc".
2015-06-01Merge pull request #2819 from cremno/only-genop-non-lvar-gets-in-val-modeYukihiro "Matz" Matsumoto
only generate gets of non-local vars in VAL mode
2015-06-01Merge pull request #2820 from cremno/add-too-big-array-size-checksYukihiro "Matz" Matsumoto
fix two potential cases of signed integer overflow
2015-06-01Merge pull request #2818 from Mav7/masterYukihiro "Matz" Matsumoto
Added more documentation for some of the functions found in mruby.h and value.h
2015-06-01singleton_class should not be duped; fix #2815Yukihiro "Matz" Matsumoto
2015-06-01only generate gets of non-local vars in VAL modecremno
This fixes a crash for code like "#{@a;1}". Unlike CRuby globals are excluded too since mruby doesn't implement hooking.
2015-06-01fix two potential cases of signed integer overflowcremno
2015-06-01Update AUTHORSRalph Desir
2015-06-01Update README.mdRalph Desir
2015-06-01Update mruby.h.mdRalph Desir
2015-06-01Update value.h.mdRalph Desir
Wrote documentation for functions found in the value.h file.
2015-05-31Added a .md file for value.hMav7
2015-05-31Update mruby.h.mdRalph Desir
2015-05-31Update mruby.h.mdRalph Desir
2015-05-31Update mruby.h.mdRalph Desir
Added documentation of more of the C API functions found inside mruby.h
2015-06-01singleton_class should not be cloned; close #2815Yukihiro "Matz" Matsumoto
2015-05-31Merge pull request #2814 from cremno/fix-masgn-nosplat-array-rhs-bugYukihiro "Matz" Matsumoto
fix masgn nosplat array rhs bug