summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2018-03-25Merge pull request #3984 from take-cheeze/merge_socketYukihiro "Matz" Matsumoto
Catch up with latest mruby-socket.
2018-03-25Merge commit '36d016afd663d34607c843d03371bedb71efa34e'Takeshi Watanabe
2018-03-24Merge pull request #3982 from take-cheeze/fix_str_cmpYukihiro "Matz" Matsumoto
Return nil if type differ in `String#<=>`.
2018-03-24Return nil if type differ in `String#<=>`.Takeshi Watanabe
2018-03-22Merge pull request #3974 from take-cheeze/repo_pathYukihiro "Matz" Matsumoto
Add `:path` option for git repository.
2018-03-22Add `:path` option for git repository.Takeshi Watanabe
2018-03-22Need to keep block argument in `mrb_exec_irep`; fix #3973Yukihiro "Matz" Matsumoto
2018-03-20Needed to set `ci->proc` in `OP_SUPER`; fix #3966Yukihiro "Matz" Matsumoto
2018-03-20Merge pull request #3972 from take-cheeze/fix_ary_set_len_assertYukihiro "Matz" Matsumoto
Set array length after expanding capacity.
2018-03-19Set array length after expanding capacity.Takeshi Watanabe
2018-03-16Set protocol of AddrInfoTomoyuki Sahara
backport https://github.com/mruby/mruby/pull/3891
2018-03-16`__sort_sub__` is a method defined in `Array`; fix #3970Yukihiro "Matz" Matsumoto
Reorganize `__sort_sub__` arguments.
2018-03-16Merge pull request #3957 from take-cheeze/fix_io_readYukihiro "Matz" Matsumoto
Pass same mode parameter to `IO.sysopen` and `IO.open` in `IO.read`.
2018-03-16Needed to pass sort block.Yukihiro "Matz" Matsumoto
2018-03-16Update `mrb_get_args` reference comment; ref #3963Yukihiro "Matz" Matsumoto
2018-03-16Merge pull request #3969 from hfm/patch-1Yukihiro "Matz" Matsumoto
Fix tinytypo
2018-03-16Fix tinytypoOkumura Takahiro
2018-03-12Merge pull request #3963 from dearblue/forced-block-argumentsYukihiro "Matz" Matsumoto
Give me block by mrb_get_args() (forced block arguments)
2018-03-05Merge pull request #3965 from take-cheeze/patch-1Yukihiro "Matz" Matsumoto
Add same fix as #3964 to lib/mruby/gem.rb .
2018-03-05Add same fix as #3964 to lib/mruby/gem.rb .Takeshi Watanabe
2018-03-05Merge pull request #3964 from take-cheeze/patch-1Yukihiro "Matz" Matsumoto
Close `mrb_state` before error exit.
2018-03-05Close `mrb_state` before exit.Takeshi Watanabe
2018-03-05Close on exception too.Takeshi Watanabe
2018-03-04fix && to &! in mrb_get_args()dearblue
2018-03-04add forced block arguments feature to mrb_get_argsdearblue
2018-03-02Add `mrb_fiber_alive_p` to C API.Yukihiro "Matz" Matsumoto
2018-03-02Round up the `dstlen` value; fix #3949Yukihiro "Matz" Matsumoto
The fix was proposed by https://hackerone.com/aerodudrizzt
2018-02-23Pass same mode parameter to `IO.sysopen` and `IO.open` in `IO.read`.Takeshi Watanabe
2018-02-17Merge pull request #3953 from take-cheeze/fix_cross_test_runner_verboseYukihiro "Matz" Matsumoto
Add verbose flag to cross test runner too. [experimental]
2018-02-16Add verbose flag to cross test runner too.Takeshi Watanabe
2018-02-13Check if `to_int` returns `fixnum` value; fix #3946Yukihiro "Matz" Matsumoto
2018-02-13Check `sizeof(base64_dec_tab)` in base64 encoding; fix #3947Yukihiro "Matz" Matsumoto
The issue (and the fix) reported by https://hackerone.com/aerodudrizzt
2018-02-13Check negative offset in `pack` method; fix #3944Yukihiro "Matz" Matsumoto
2018-02-13Fixed wrong offset in `pack_x` function; ref #3944Yukihiro "Matz" Matsumoto
2018-02-13Use 'mrb_raise` instead of `mrb_raisef` when no argument given.Yukihiro "Matz" Matsumoto
2018-02-12`String#inspect` to use hexadecimal, not octal to print unprintable.Yukihiro "Matz" Matsumoto
2018-02-12Merge pull request #3945 from take-cheeze/fix_dep_core_gemsYukihiro "Matz" Matsumoto
Fix core dependencies resolving in dependencies gems.
2018-02-12Merge pull request #3915 from llothar/masterYukihiro "Matz" Matsumoto
Uncommented the Visual Studio version check
2018-02-12Resolve conflicts between labels and conditional ternary; fix #3931Yukihiro "Matz" Matsumoto
2018-02-10Fix core dependencies resolving in dependencies gems.Takeshi Watanabe
2018-02-10Need to determine `IS_LABEL_POSSIBLE()` properly.Yukihiro "Matz" Matsumoto
Otherwise, `{"a": 1}` will cause `SyntaxError`.
2018-02-10Check negative `count` in `pack_x` and `unpack_x`; fix #3944Yukihiro "Matz" Matsumoto
2018-02-10Add `mruby-io` and `mruby-pack` to `default.gembox`Yukihiro "Matz" Matsumoto
2018-02-09Check if `mruby-pack` template count overflow; fix #3942Yukihiro "Matz" Matsumoto
2018-02-09Check `ensure` proc is NULL before calling; fix #3943Yukihiro "Matz" Matsumoto
2018-02-04Merge pull request #3941 from matsumotory/patch-1Yukihiro "Matz" Matsumoto
Depend mruby-io and mruby-pack in mruby core
2018-02-03Depend mruby-io and mruby-pack in mruby coreMATSUMOTO, Ryosuke
2018-02-02Need `fcntl.h` and `sys/stat.h` as well for `_open`; ref #3938Yukihiro "Matz" Matsumoto
2018-02-02Need to include `io.h` anyway for _WIN32/64; ref #3938Yukihiro "Matz" Matsumoto
2018-02-02Merge pull request #3940 from take-cheeze/fix_proc_ctx_accessYukihiro "Matz" Matsumoto
Fix possible memory access error.