1. 28 Feb, 2017 2 commits
  2. 17 Feb, 2017 1 commit
  3. 10 Feb, 2017 1 commit
  4. 08 Feb, 2017 1 commit
    • Tomoyuki Sahara's avatar
      define IO#hash to override Enumerable#hash. fixes #73. · caab1c20
      Tomoyuki Sahara authored
      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.
      caab1c20
  5. 26 Dec, 2016 1 commit
  6. 24 Dec, 2016 1 commit
  7. 19 Dec, 2016 1 commit
  8. 17 Dec, 2016 2 commits
  9. 16 Dec, 2016 1 commit
  10. 15 Dec, 2016 1 commit
  11. 27 Nov, 2016 1 commit
  12. 26 Nov, 2016 1 commit
  13. 13 Oct, 2016 1 commit
  14. 30 Sep, 2016 2 commits
  15. 13 Sep, 2016 1 commit
  16. 11 Sep, 2016 2 commits
  17. 10 Aug, 2016 1 commit
  18. 09 Aug, 2016 1 commit
  19. 08 Aug, 2016 2 commits
  20. 07 Aug, 2016 2 commits
  21. 06 Aug, 2016 1 commit
  22. 22 Jun, 2016 1 commit
  23. 21 Jun, 2016 2 commits
  24. 13 May, 2016 1 commit
    • Eric Hodel's avatar
      Create socket in /tmp for security · 11961b42
      Eric Hodel authored
      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.
      11961b42
  25. 12 May, 2016 1 commit
    • Eric Hodel's avatar
      Include reason in test failure message · 777cf70c
      Eric Hodel authored
      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.
      777cf70c
  26. 21 Jan, 2016 1 commit
  27. 20 Jan, 2016 1 commit
  28. 08 Dec, 2015 2 commits
  29. 07 Dec, 2015 2 commits
    • takahashim's avatar
      Fix for windows(mingw) · dd754220
      takahashim authored
      * 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.
      dd754220
    • Tomoyuki Sahara's avatar
      Merge pull request #55 from takahashim/separator · 68de1e4f
      Tomoyuki Sahara authored
      fix file separator
      68de1e4f
  30. 04 Dec, 2015 1 commit
    • takahashim's avatar
      fix file separator · 0f5b8b66
      takahashim authored
      * File::SEPARATOR should be "/"
      * File::ALT_SEPARATOR should be "\\" or nil.
      0f5b8b66
  31. 03 Dec, 2015 1 commit