summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-09-02Added regular expression header markdown.Ralph Desir(Mav7)
2015-09-02Created version.h markdown.Ralph Desir
2015-09-02doc/api/mruby/version.h.mdRalph Desir(Mav7)
2015-09-03clear DUMP_ENDIAN flags before settingYukihiro "Matz" Matsumoto
2015-09-03remove trailing spaces from bc9c47d5Yukihiro "Matz" Matsumoto
2015-09-03Merge pull request #2924 from zzak/mruby-testYukihiro "Matz" Matsumoto
Extract mrbtest to binary gem
2015-09-03unsigned long may be smaller than mrb_int; use uint64_t instead; fix #2935Yukihiro "Matz" Matsumoto
2015-09-02Integer << and >> to use Float instead of raising RangeErrorYukihiro "Matz" Matsumoto
2015-09-02Make travis happyZachary Scott
We have do this because mruby's test files are found using MRUBY_ROOT, like this: mrbs = Dir.glob("#{MRUBY_ROOT}/test/t/*.rb")
2015-09-02Float << and >> should be more compatible to FixnumYukihiro "Matz" Matsumoto
2015-09-02ensure must not be called before rescue; fix #2933Yukihiro "Matz" Matsumoto
2015-09-02Merge pull request #2934 from zzak/masterYukihiro "Matz" Matsumoto
Typo in mruby-bin-debugger/mrbgem.rake
2015-09-02Merge pull request #2932 from jbreeden/cpp11_compatibility_fixYukihiro "Matz" Matsumoto
C++11 Build Error: C++11 requires a space between literal and identifiers
2015-09-02update string.h.md; ref #2931Yukihiro "Matz" Matsumoto
2015-09-02Merge pull request #2931 from Mav7/masterYukihiro "Matz" Matsumoto
Updated string.h.md
2015-09-01Typo in mruby-bin-debugger/mrbgem.rakeZachary Scott
2015-09-01C++ 11 requires a space between literal and identifiersjbreeden
2015-09-01mruby-test should be opt-inZachary Scott
2015-09-01Expose MRuby source as a gemSeba Gamboa
2015-09-01Update string.h.mdRalph Desir
2015-09-01Merge pull request #2930 from suzukaze/version2Yukihiro "Matz" Matsumoto
Refactor version macros, and add a global const variable
2015-09-01Add a global const variable MRUBY_RELEASE_NOJun Hiroe
2015-09-01Refactor version.h macrosJun Hiroe
2015-09-01Merge pull request #2929 from Mav7/masterYukihiro "Matz" Matsumoto
C string.h API documentation.
2015-09-01Merge pull request #2927 from hone/bintest_subfoldersYukihiro "Matz" Matsumoto
run bintests within subfolders of bintest/
2015-08-31Update string.h.mdRalph Desir
2015-08-31run bintests within subfolders of bintest/Terence Lee
2015-08-31Update string.h.mdRalph Desir
2015-08-30Update string.h.mdRalph Desir
2015-08-30Added string markdown.Ralph Desir(Mav7)
2015-08-27Merge pull request #2925 from suzukaze/test-string-freezeYukihiro "Matz" Matsumoto
Add String#freeze test
2015-08-27Add String#freeze testJun Hiroe
2015-08-27add String#freeze to the coreYukihiro "Matz" Matsumoto
2015-08-27variables are not used on the platforms lack FD_CLOEXEC.Tomoyuki Sahara
2015-08-26Merge pull request #30 from ksss/cloexecTomoyuki Sahara
Opened fd should be set FD_CLOEXEC by default
2015-08-22Add mruby-test build config and update :test task to use mrbgem binaryZachary Scott
Removed old mrbgems_test.rake which was merged into mrbgem spec
2015-08-22Refactor test/mrbtest.rake and tasks/mrbgems_test.rake into mrbgem.rakeZachary Scott
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