| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-06-12 | Merge pull request #85 from ksss/read | Tomoyuki Sahara | |
| Support outbuf argument for IO#read | |||
| 2017-06-12 | Merge pull request #86 from ksss/write | Tomoyuki Sahara | |
| Reseek when write | |||
| 2017-06-12 | Merge pull request #84 from ksss/pos | Tomoyuki Sahara | |
| To accurate `pos` | |||
| 2017-06-12 | Reseek when write | ksss | |
| 2017-06-12 | Support outbuf argument for IO#read | ksss | |
| 2017-06-11 | To accurate `pos` | ksss | |
| pos shouldn't cache because it's not controllable | |||
| 2017-06-07 | mruby 1.2.0 assumes test blocks return their results. master does not. | Tomoyuki Sahara | |
| 2017-06-05 | Merge pull request #80 from ksss/sysread | Tomoyuki Sahara | |
| IO#sysread Check for readable | |||
| 2017-05-27 | IO#sysread Check for readable | ksss | |
| 2017-05-23 | Merge pull request #78 from ksss/syswrite | Tomoyuki Sahara | |
| Should raise SyscallError on IO#syswrite | |||
| 2017-05-23 | Merge pull request #79 from ksss/ioerror | Tomoyuki Sahara | |
| Fix some spec for IO#sysread | |||
| 2017-05-22 | IO#sysread should raise error when invalid pos | ksss | |
| 2017-05-21 | IO#sysread should raise IOError when closed | ksss | |
| 2017-05-21 | IO#sysread with 0 always return empty string | ksss | |
| 2017-05-21 | Should raise SyscallError on IO#syswrite | ksss | |
| instead of IOError | |||
| 2017-05-19 | "open" error message should include pathname. fixes #77. | Tomoyuki Sahara | |
| 2017-04-25 | Merge pull request #76 from yyamano/issue-75 | Tomoyuki Sahara | |
| Make backquote work with the latest mruby. Fixed #75 | |||
| 2017-04-24 | Make backquote work with the latest mruby. Fixed #75 | Yuji Yamano | |
| 2017-02-28 | Merge pull request #74 from iij/run-test-outside-source-tree | Tomoyuki Sahara | |
| run mrbtest outside of source tree. | |||
| 2017-02-28 | run mrbtest outside of source tree. | Tomoyuki Sahara | |
| 2017-02-17 | Add a travis-ci badge. | Tomoyuki Sahara | |
| 2017-02-10 | File class does not have to include Enumerable. | Tomoyuki Sahara | |
| Because IO class, which is the superclass of File class, includes it. | |||
| 2017-02-08 | define IO#hash to override Enumerable#hash. fixes #73. | Tomoyuki Sahara | |
| Current implementation of Enumerable#hash calls #each to collect hash values of enumerated objects (then calculates the hash value of the Enumerable object). But IO#each is a method to read lines. It is not expected that IO#hash reads all lines from the IO object. Or even worse, program waits for the IO object to be readable if it is a socket or something cannot be read immediately. | |||
| 2016-12-26 | Merge pull request #72 from masahino/add_pointer_casting | Tomoyuki Sahara | |
| Add pointer casting | |||
| 2016-12-24 | Add pointer casting | masahino | |
| 2016-12-19 | Merge pull request #71 from eagletmt/readlink | Tomoyuki Sahara | |
| Add File.readlink | |||
| 2016-12-17 | Fix memory leak in error case | Kohei Suzuki | |
| 2016-12-17 | Add File.readlink | Kohei Suzuki | |
| 2016-12-16 | Merge pull request #70 from eagletmt/chmod | Tomoyuki Sahara | |
| Add File.chmod | |||
| 2016-12-16 | Add File.chmod | Kohei Suzuki | |
| 2016-11-27 | Merge pull request #69 from eagletmt/explicit-cast | Tomoyuki Sahara | |
| Add explicit cast from void* to struct mrb_io* | |||
| 2016-11-26 | Add explicit cast from void* to struct mrb_io* | Kohei Suzuki | |
| For compatibility with C++. | |||
| 2016-10-13 | raise an exception when we cannot close "fd" but can close "fd2". | Tomoyuki Sahara | |
| 2016-09-30 | eof? should raise an IOError if it is not opened for reading. | Tomoyuki Sahara | |
| 2016-09-30 | reimplement #eof. fixes #66. | Tomoyuki Sahara | |
| 2016-09-13 | Merge pull request #65 from ksss/join | Tomoyuki Sahara | |
| Support Array argument | |||
| 2016-09-11 | Support Array argument | ksss | |
| 2016-09-11 | Show value of expect and actual each assertion | ksss | |
| 2016-08-10 | Merge pull request #64 from asfluido/master | Tomoyuki Sahara | |
| Apparently, in mruby-process gem, Process is now a Module, not a Class | |||
| 2016-08-09 | Apparently, in mruby-process gem, Process is now a Module, not a Class | Carlo - PERI | |
| 2016-08-08 | Merge pull request #63 from ksss/opt | Tomoyuki Sahara | |
| Enable option :in, :out, :err to IO.popen | |||
| 2016-08-08 | Merge pull request #62 from ksss/global | Tomoyuki Sahara | |
| Should use global variable | |||
| 2016-08-07 | Enable Fixnum option | ksss | |
| 2016-08-07 | Enable option :in, :out, :err | ksss | |
| 2016-08-06 | Should use global variable | ksss | |
| 2016-06-22 | update $? when IO object is closed. closes #58. | Tomoyuki Sahara | |
| 2016-06-21 | Merge pull request #60 from drbrain/test_io_setup_failure | Tomoyuki Sahara | |
| Test io setup failure | |||
| 2016-06-21 | add IO#isatty and IO#tty? | Tomoyuki Sahara | |
| 2016-05-12 | Create socket in /tmp for security | Eric 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-12 | Include reason in test failure message | Eric 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. | |||
