summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2020-03-08Merge pull request #4952 from Reckordp/masterYukihiro "Matz" Matsumoto
Traditional, UNC, and Drive Path
2020-03-08Let me in PleaseReckordp
2020-03-08Increase flexibility of CrossBuildReckordp
2020-03-08Let me in PleaseReckordp
2020-03-08Traditional, UNC, and Device Is Absolute?Reckordp
2020-03-08Commit from remoteReckordp
2020-03-08Evaluate all type pathReckordp
2020-03-07Merge branch 'dearblue-io-pread-pwrite'Yukihiro "Matz" Matsumoto
2020-03-07Small refactoring on #4939Yukihiro "Matz" Matsumoto
2020-03-07Use in-house macro `ISALPHA` instead of `isalpha`; ref #4950Yukihiro "Matz" Matsumoto
2020-03-07Merge branch 'io-pread-pwrite' of https://github.com/dearblue/mruby into ↵Yukihiro "Matz" Matsumoto
dearblue-io-pread-pwrite
2020-03-07Merge pull request #4951 from Reckordp/masterYukihiro "Matz" Matsumoto
Fix unfinished changes
2020-03-07Add absolute path for UNCReckordp
2020-03-07Fix typoReckordp
2020-03-07Merge the update suggested by @mattn; ref #4950Yukihiro "Matz" Matsumoto
2020-03-07Merge pull request #4950 from Reckordp/masterYukihiro "Matz" Matsumoto
Absolute path for windows
2020-03-07Absolute path for windowsReckordp
2020-03-04Merge pull request #4948 from kou/32bit-windows-method-t-structYukihiro "Matz" Matsumoto
Enable MRB_METHOD_T_STRUCT by default on 32bit Windows
2020-03-04Enable MRB_METHOD_T_STRUCT by default on 32bit WindowsSutou Kouhei
Because we can't use the highest 2 bits of function pointers.
2020-02-23Merge pull request #4946 from sizious/sega-dreamcast-exampleYukihiro "Matz" Matsumoto
Improving comments in the cross-compiling sample for the Sega Dreamcast.
2020-02-22Improving comments in the cross-compiling example for the Sega Dreamcast ↵SiZiOUS
(sh-elf).
2020-02-22Merge pull request #4945 from Leo-Neat/masterYukihiro "Matz" Matsumoto
Add CIFuzz action
2020-02-22Merge pull request #4944 from sizious/sega-dreamcast-exampleYukihiro "Matz" Matsumoto
Added example for cross-compiling for Sega Dreamcast (sh-elf).
2020-02-22Merge pull request #4942 from inobelar/patch-1Yukihiro "Matz" Matsumoto
Updated README.md - Fixed link to github issues
2020-02-21CIFuzz actionLeo Neat
2020-02-21Added example for cross-compiling for Sega Dreamcast (sh-elf).SiZiOUS
Thanks to @yujiyokoo for demonstrating mruby usage on Sega Dreamcast at RubyConf AU 2020! See more here: https://youtu.be/ni-1x5Esa_o
2020-02-21Updated README.md - Fixed link to github issuesYurii Nakonechnyi
2020-02-12Fix integer boundary check before `float` to `time_t` casting.Yukihiro "Matz" Matsumoto
2020-02-05Merge pull request #4941 from davidsiaw/mac-compatYukihiro "Matz" Matsumoto
Include time.h for ios
2020-02-03Add explicit type cast to return value from `mrmchr`; ref #4940Yukihiro "Matz" Matsumoto
C++ is stricter in implicit type casting.
2020-02-03Use simple search for short strings in `mrb_memsearch_qs`; close #4940Yukihiro "Matz" Matsumoto
Differences from the PR #4940: * Use simple search for short strings only. * "short" means `m+n` is shorter than `MRB_QS_SHORT_STRING_LENGTH`. * The current default value for `MRB_QS_SHORT_STRING_LENGTH` is 2048.
2020-02-02Implement `IO#pread` and `IO#pwrite`dearblue
It is available by default in environments where `__unix__` is defined. Other environments are enabled by defining `MRB_WITH_IO_PREAD_PWRITE` (requires an implementation of `pread()` and `pwrite()` functions). In any case, you can disable it by defining `MRB_WITHOUT_IO_PREAD_PWRITE`.
2020-02-01Merge pull request #4938 from dearblue/socket-mingwYukihiro "Matz" Matsumoto
Fix builds for old mingw in mruby-socket; ref #4914
2020-02-01Fix builds for old mingw in mruby-socket; ref #4914dearblue
2020-01-31Add explicit casting in `file.c` to silence warnings.Yukihiro "Matz" Matsumoto
2020-01-31Avoid casting warning from `mrb_int` to `int` in `io.c`.Yukihiro "Matz" Matsumoto
2020-01-31Avoid implicit integer casting in `backtrace.c` and `hash.c`.Yukihiro "Matz" Matsumoto
2020-01-31Remove unnecessary use of `uint16_t` in `symbol.c`.Yukihiro "Matz" Matsumoto
2020-01-30Fix arena index type from `mrb_int` to just `int`.Yukihiro "Matz" Matsumoto
2020-01-30Move fallback definitions of `FLT_EPSILON` etc. after `#include <mruby/value.h>`Yukihiro "Matz" Matsumoto
that includes `float.h`. It allows definitions from native headers.
2020-01-29Isolate top-level local variables by file scope; fix #4931dearblue
2020-01-29Add test for top level local variables are in file scope; ref #4931dearblue
2020-01-29Removed junk.Yukihiro "Matz" Matsumoto
My cat stepped on the keyboard at the last moment before the commit.
2020-01-29Remove unused local variable `mid`; ref #4936Yukihiro "Matz" Matsumoto
2020-01-28Merge pull request #4873 from dearblue/open-flagsYukihiro "Matz" Matsumoto
Support bit flags for `IO.open`
2020-01-28include time.h for iosDavid Siaw
2020-01-27Fixed backtrace message for top-level blocks; fix #4936Yukihiro "Matz" Matsumoto
In top-level, `mid` is `NULL`. We used to ignore 'mid` update for `NULL`.
2020-01-21Merge pull request #4935 from mimaki/delete-duplicated-Array-delete_ifYukihiro "Matz" Matsumoto
Delete duplicated `Array#delete_if`.
2020-01-21Delete duplicated `Array#delete_if` test.Hiroshi Mimaki
2020-01-21Delete duplicated `Array#delete_if`.Hiroshi Mimaki