summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-08-21range.rb: refactor code (use ! instead of not, use favor modifier if and ↵go.kikuta
unless usage when having a single-line body)
2015-08-20Merge pull request #2921 from gkta/refactor-arrayYukihiro "Matz" Matsumoto
array.rb: refactor some code
2015-08-19array.rb: refactor some codego.kikuta
2015-08-18Merge pull request #2920 from ↵Yukihiro "Matz" Matsumoto
cremno/fix-irep-float-dump-format-string-for-mrb_use_float irep dump: fix format string for MRB_USE_FLOAT
2015-08-18Merge pull request #2919 from ↵Yukihiro "Matz" Matsumoto
cremno/delete-duplicate-definition-of-exception-exception delete duplicate definition of Exception.exception
2015-08-17delete duplicate definition of Exception.exceptioncremno
It overwrote the original definition in src/error.c, line 446.
2015-08-17fix irep float dump format string for MRB_USE_FLOATcremno
IEC 60559 single format has 6 to 9 significant decimal digits precision. However the printf conversion specifier e (and E, of course) already writes 1 digit - the one before the decimal point - and precision specifies the number of digits to write after the decimal point.
2015-08-12Merge pull request #2913 from gkta/remove-duplicate-len-checkYukihiro "Matz" Matsumoto
Remove duplicated RARRAY_LEN check in ary_elt
2015-08-12Remove duplicated RARRAY_LEN checkgo.kikuta
2015-08-11Merge pull request #2912 from gkta/remove-nonneed-tmp-valueYukihiro "Matz" Matsumoto
Remove non-need tmp value in mrb_obj_to_sym
2015-08-11Remove non-need tmp valuego.kikuta
2015-08-11compiler: allow "class A end" by tweaking the superclass rule like CRuby2.3Yukihiro "Matz" Matsumoto
2015-08-10codegen: don't need to genop(); just update s->iseq directlyYukihiro "Matz" Matsumoto
2015-08-10codegen: add peep hole optimization to skip overridden OP_MOVEYukihiro "Matz" Matsumoto
2015-08-10codegen: reserve stack region for OP_APOST; fix #2824Yukihiro "Matz" Matsumoto
2015-08-10prevent out-of-bounds ensure clause access; fix #2910Yukihiro "Matz" Matsumoto
2015-08-07FIXABLE() may work wrong on MRB_INT64; fix #2909Yukihiro "Matz" Matsumoto
2015-08-05add String#setbyte and String#byteslice to mruby-string-extYukihiro "Matz" Matsumoto
2015-08-04Merge pull request #2908 from BanzaiMan/ha-feature-containersYukihiro "Matz" Matsumoto
Add build on Trusty and OS X
2015-08-03Try building on Xcode 6.4Hiro Asari
The default 6.1 was slow
2015-08-03Add OS X build to the matrixHiro Asari
2015-08-03Build matrix of size 2Hiro Asari
2015-08-03Update package listHiro Asari
2015-08-03Set language, and use the new Trusty envHiro Asari
2015-08-03Merge pull request #2907 from hone/pathYukihiro "Matz" Matsumoto
be able to source with :path for mrbgems
2015-08-03better hash value from enumerables; fix #2906Yukihiro "Matz" Matsumoto
2015-08-02be able to source with :path for mrbgemsTerence Lee
2015-08-01link libncurses when there's /usr/include/curses.h; fix #2905Yukihiro "Matz" Matsumoto
2015-07-30vm: execute ensure without exception at the top of the fiber; fix #2904Yukihiro "Matz" Matsumoto
2015-07-30vm: execute ensure at the top of the fiber; fix #2903Yukihiro "Matz" Matsumoto
2015-07-30Merge pull request #2901 from cremno/fix-ruby-bug-11380Yukihiro "Matz" Matsumoto
pop cmdarg in lambda body; fix [ruby-bug#11380]
2015-07-29pop cmdarg in lambda body; fix [ruby-bug#11380]cremno
regression introduced by 2fe556d9c039839c20965a2c90dff703f04e40ec
2015-07-29Merge pull request #2900 from joans321/enhance-mrbgem-buildYukihiro "Matz" Matsumoto
mrbgem compile should be depend on mrbgem.rake
2015-07-29Merge pull request #2899 from zzak/shallow-clone-mgemYukihiro "Matz" Matsumoto
Shallow clone mgem source
2015-07-27Shallow clone mgem sourceZachary Scott
2015-07-27Merge pull request #2898 from joans321/update-mrbgems-docYukihiro "Matz" Matsumoto
update mrbgems doc
2015-07-27mrbgem compile should be depend on mrbgem.rakexuejianqing
2015-07-26update mrbgems docxuejianqing
2015-07-26Merge pull request #2897 from joans321/fix-android-gcc-versionYukihiro "Matz" Matsumoto
fix android compile bug : uninitialized constant GCC_VERSION
2015-07-25fix android compile bug : uninitialized constant GCC_VERSIONxuejianqing
2015-07-23Merge pull request #2896 from sagmor/custom-gcc-versionYukihiro "Matz" Matsumoto
Add ability to change compiler versions for androideabi
2015-07-22Add ability to change compiler versions for androideabiSeba Gamboa
2015-07-20Merge pull request #2894 from suzukaze/fix-docsYukihiro "Matz" Matsumoto
Fix indents; Indent is two spaces; Delete tabs [skip ci]
2015-07-19Fix indents; Indent is two spaces; Delete tabs [skip ci]Jun Hiroe
2015-07-18Merge pull request #2892 from Mav7/masterYukihiro "Matz" Matsumoto
Added documentation for hash.
2015-07-17Deleted range and string markdowns for now.Ralph Desir(Mav7)
2015-07-17Update hash.h.mdRalph Desir
2015-07-17Update hash.h.mdRalph Desir
2015-07-17Merge pull request #2890 from jbreeden/sub_pattern_not_foundYukihiro "Matz" Matsumoto
Don't crash if pattern not found for sub
2015-07-16Don't crash if pattern not found for subJared Breeden