summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-08-22Move test source code and rake task to mrbgemZachary Scott
2015-08-22Merge pull request #2923 from yasuyuki/nilYukihiro "Matz" Matsumoto
Use #nil? instead of == nil.
2015-08-22Merge pull request #2922 from gkta/refactor-mrubygem-codeYukihiro "Matz" Matsumoto
Refactor mrubygem code (range.rb, numeric.rb, string.rb, array.rb, enum.rb)
2015-08-22Use #nil? instead of == nil.INOUE Yasuyuki
2015-08-21enum.rb: refactor code (remove redundant code)go.kikuta
2015-08-21array.rb: refactor (use onliner code if possible)go.kikuta
2015-08-21string.rb: refactor code (remove redundant code)go.kikuta
2015-08-21numeric.rb: refactor code (Avoid using {...} for multi-line blocks, ↵go.kikuta
Surrounding space missing in default value assignment)
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-21Merge pull request #43 from jkutner/masterTomoyuki Sahara
Made FILE_SEPERATOR platform dependent
2015-08-20Made FILE_SEPERATOR platform dependentJoe Kutner
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-16Added mrb_get_argc and mrb_get_midfelixjones
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-12Merge pull request #42 from hone/path_separatorTomoyuki Sahara
define PATH_SEPARATOR
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-10Merge pull request #23 from expeditiousRubyist/masterTomoyuki Sahara
Changed Windows IO overrides to use sysread and syswrite instead
2015-08-07FIXABLE() may work wrong on MRB_INT64; fix #2909Yukihiro "Matz" Matsumoto
2015-08-07make pack_l simpler.Tomoyuki Sahara
2015-08-07update installation procedure.Tomoyuki Sahara
2015-08-07support "q" and "Q". closes #7.Tomoyuki Sahara
2015-08-06implicit type conversion caused unexpected result. fixes #8.Tomoyuki Sahara
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-03Changed IO overrides to use sysread and syswrite instead of read and writeunknown
2015-08-03better hash value from enumerables; fix #2906Yukihiro "Matz" Matsumoto
2015-08-02define PATH_SEPARATORTerence Lee
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]