summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-08-09Apparently, in mruby-process gem, Process is now a Module, not a ClassCarlo - PERI
2016-08-08Merge pull request #63 from ksss/optTomoyuki Sahara
Enable option :in, :out, :err to IO.popen
2016-08-08Merge pull request #62 from ksss/globalTomoyuki Sahara
Should use global variable
2016-08-07Enable Fixnum optionksss
2016-08-07Enable option :in, :out, :errksss
2016-08-06Should use global variableksss
2016-06-22update $? when IO object is closed. closes #58.Tomoyuki Sahara
2016-06-21Merge pull request #60 from drbrain/test_io_setup_failureTomoyuki Sahara
Test io setup failure
2016-06-21add IO#isatty and IO#tty?Tomoyuki Sahara
2016-05-12Create socket in /tmp for securityEric Hodel
Some systems do not allow UNIX sockets from arbitrary directories. Instead of trying to `#define SOCKET_PATH` correctly I assume the /tmp/ directory is accessible and use it.
2016-05-12Include reason in test failure messageEric Hodel
I am seeing this test fail in some environments but can't determine why. The extra information will help me determine the reason bind(2) is failing.
2016-01-21Merge pull request #57 from MaximAbramchuck/patch-1Tomoyuki Sahara
Add installation instructions
2016-01-20Add installation instructionsMaxim Abramchuk
2015-12-08File::ALT_SEPARATOR is always defined (some string or nil).Tomoyuki Sahara
2015-12-08Merge pull request #56 from takahashim/fix-flockTomoyuki Sahara
Fix for windows(mingw)
2015-12-08Fix for windows(mingw)takahashim
* File.expand_path: support drive letter and ALT_SEPARATOR * File.dirname: support ALT_SEPARATOR * File.basename: ditto. * IO.popen: raise NotImplementedError * IO.pipe: ditto. * `cmd`: ditto. * File#flock: ditto. * FileTest.pipe?: ditto. * FileTest.symlink?: ditto. * FileTest.socket?: ditto.
2015-12-07Merge pull request #55 from takahashim/separatorTomoyuki Sahara
fix file separator
2015-12-04fix file separatortakahashim
* File::SEPARATOR should be "/" * File::ALT_SEPARATOR should be "\\" or nil.
2015-12-03Merge pull request #54 from takahashim/win-crlfTomoyuki Sahara
fix tests for Win: use binary mode
2015-12-02fix tests for Win: use binary modetakahashim
2015-12-02Merge pull request #53 from takahashim/build-win32Tomoyuki Sahara
build on Win32
2015-12-02build on Win32takahashim
2015-11-24symlink(2) returns -1 when it fails.Tomoyuki Sahara
2015-11-24assert_nothing_raised is not available on mruby 1.0.0.Tomoyuki Sahara
2015-11-24Merge pull request #51 from ksss/io-pipeTomoyuki Sahara
Implement IO.pipe
2015-11-24Implement IO.pipeksss
2015-11-24arguments can be shared strings.Tomoyuki Sahara
2015-11-24Merge pull request #50 from takahashim/file-symlinkTomoyuki Sahara
add File.symlink
2015-11-22add File.symlinktakahashim
2015-11-22Merge pull request #48 from takahashim/file-pathTomoyuki Sahara
add File.path
2015-11-21add File.pathtakahashim
2015-10-20off_t can be larger than mrb_int.Tomoyuki Sahara
2015-10-20raise a SystemCallError when lseek(2) fails.Tomoyuki Sahara
2015-10-20UT for IO#sysseek.Tomoyuki Sahara
2015-10-20fix typo.Tomoyuki Sahara
2015-10-20Merge branch 'master' of github.com:iij/mruby-ioTomoyuki Sahara
2015-10-19Merge pull request #47 from matsumoto-r/patch-1Tomoyuki Sahara
Fix buffer overflow of `pos` when file-size is too big
2015-10-19Fix buffer overflow of `pos` when file-size is too bigMATSUMOTO, Ryosuke
2015-09-28Merge pull request #45 from takahashim/enable-testTomoyuki Sahara
enable test
2015-09-28Merge pull request #46 from takahashim/add-rewindTomoyuki Sahara
support IO#rewind
2015-09-27add IO#rewindtakahashim
2015-09-27Merge pull request #44 from takahashim/io-addstrTomoyuki Sahara
support IO#<<
2015-09-27enable testtakahashim
2015-09-27support IO#<<takahashim
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-21Merge pull request #43 from jkutner/masterTomoyuki Sahara
Made FILE_SEPERATOR platform dependent
2015-08-20Made FILE_SEPERATOR platform dependentJoe Kutner
2015-08-12Merge pull request #42 from hone/path_separatorTomoyuki Sahara
define PATH_SEPARATOR
2015-08-02define PATH_SEPARATORTerence Lee