summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-11-04add quoted symbol tests; ref #3231Yukihiro "Matz" Matsumoto
2016-11-03Merge pull request #3232 from lukaselmer/patch-1Yukihiro "Matz" Matsumoto
Update documentation of fetch
2016-11-02Update documentation of fetchLukas Elmer
The sentence `Negative values of +index+ count from the end of the array.` can be interpreted that it only holds if a block is given. Clarify it.
2016-11-02allow single quoted labels in hashes; ref #3231Yukihiro "Matz" Matsumoto
2016-11-02allow quoted labels in hashes; fix #3231Yukihiro "Matz" Matsumoto
2016-10-28should not unshare() reclaimed env objects; fix #3230Yukihiro "Matz" Matsumoto
2016-10-24macro mrb_bool() may evaluate arg multiple times; ref #3228Yukihiro "Matz" Matsumoto
2016-10-24Merge pull request #3228 from ksss/respond_to_missingYukihiro "Matz" Matsumoto
Kernel#respond_to? should return true|false only
2016-10-23Kernel#respond_to? should return true|false onlyksss
2016-10-20Move to_proc conversion from OP_ENTER to OP_SENDB; fix #3227Yukihiro "Matz" Matsumoto
2016-10-13raise an exception when we cannot close "fd" but can close "fd2".Tomoyuki Sahara
2016-10-12Module#define_method supports proc argumentksss
2016-10-08Merge pull request #3223 from AltimitSystems/android.rake-ndk-clangYukihiro "Matz" Matsumoto
Android Task GCC support re-added
2016-10-08Merge branch 'master' of github.com:mruby/mrubyFelix Jones
2016-10-08Removed GCC TODOFelix Jones
2016-10-08Android GCC support re-addedFelix Jones
2016-10-08Merge pull request #3222 from AltimitSystems/android.rake-ndk-clangYukihiro "Matz" Matsumoto
Android mips/mips64 support
2016-10-08Fixed mips and mips64: GCC Toolchain now points to GCC.Felix Jones
2016-10-07Android task: NDK default search paths now favour ndk-bundle. Added macOS ↵Felix Jones
NDK search paths.
2016-09-30eof? should raise an IOError if it is not opened for reading.Tomoyuki Sahara
2016-09-30reimplement #eof. fixes #66.Tomoyuki Sahara
2016-09-28Merge pull request #3218 from nobu/trailing-spaceYukihiro "Matz" Matsumoto
Removed trailing spaces
2016-09-28Removed trailing spacesNobuyoshi Nakada
2016-09-27Merge pull request #3217 from ksss/breakYukihiro "Matz" Matsumoto
Fix unexpected behavior with break
2016-09-27mrb_str_strlen() should be MRB_API; ref #3216Yukihiro "Matz" Matsumoto
2016-09-27Merge pull request #3216 from kou/remove-needless-mrbapiYukihiro "Matz" Matsumoto
Remove needless MRB_API
2016-09-26Fix unexpected behavior with breakksss
``` def yie yield end def bre yie { 1+1 break } end p bre #=> display 2, but should be nil ```
2016-09-25Remove needless MRB_APIKouhei Sutou
ref #3215 If a function (such as mrb_read_irep_file()) is declared without MRB_API in header file (such as include/mruby/dump.h), implementation of the function in source file (such as src/load.c) should also defined without MRB_API. If MRB_API is mismatch, Visual C++ reports link error with C2375 error code: https://msdn.microsoft.com/en-us/library/5k6kw95a.aspx
2016-09-24Remove unnecessary MRB_API from read_irep related functions; ref #3215Yukihiro "Matz" Matsumoto
2016-09-22Merge pull request #3213 from unak/print-visualcYukihiro "Matz" Matsumoto
Visual C++ support of UTF-8 hack on mruby-print
2016-09-21Use non-underscore'ed namesU.Nakamura
Accept @mattn's comment.
2016-09-21Use underbar'ed name to get rid of warningsU.Nakamura
2016-09-21Not only for MINGW but also for Visual C++U.Nakamura
2016-09-20Fix return value type of bytecode_decoderKazuaki Tanaka
2016-09-20Bytecode decoder support, MRB_BYTECODE_DECODE_OPTIONKazuaki Tanaka
2016-09-18Merge pull request #3211 from eregon/fix_limitation_typosYukihiro "Matz" Matsumoto
Fix a couple typos in limitations.md
2016-09-17Fix a couple typos in limitations.mdBenoit Daloze
2016-09-16Merge pull request #3210 from AltimitSystems/android.rake-ndk-clangYukihiro "Matz" Matsumoto
Fixed regex order falling early in arch cases, causing x86_64 and arm…
2016-09-15Fixed regex order falling early in arch cases, causing x86_64 and arm-v7a to ↵Felix Jones
use wrong target.
2016-09-16Merge pull request #3209 from AltimitSystems/masterYukihiro "Matz" Matsumoto
Re-written android.rake task for latest Android NDK clang. Currently …
2016-09-15Re-written android.rake task for latest Android NDK clang. Currently loses ↵Felix Jones
support for GCC and mips, mips64. Addresses issue #3208
2016-09-13Merge pull request #65 from ksss/joinTomoyuki Sahara
Support Array argument
2016-09-11Support Array argumentksss
2016-09-11Show value of expect and actual each assertionksss
2016-09-08Merge pull request #3207 from ksss/splatYukihiro "Matz" Matsumoto
Fix SEGV when splat object
2016-09-08Add testing for regressionksss
2016-09-08Fix SEGV when splat objectksss
Splat operation should return an array. And raise an error if result of convert by to_a is not array or nil.
2016-09-06Merge pull request #3205 from yurie/abort-headerYukihiro "Matz" Matsumoto
surpress warning when MRB_DISABLE_STDIO
2016-09-06Merge pull request #3206 from ksss/envYukihiro "Matz" Matsumoto
Fix SEGV when unshared env
2016-09-06surpress warning when MRB_DISABLE_STDIOyuri