[macruby-changes] [MacRuby/MacRuby] f7f88c: ext/socket: UNIXSocket#path return duplicated stri...

noreply at github.com noreply at github.com
Thu Dec 8 05:33:09 PST 2011


  Branch: refs/heads/master
  Home:   https://github.com/MacRuby/MacRuby

  Commit: f7f88c3e5734fd33143aee7f067a1e2b5a7230ff
      https://github.com/MacRuby/MacRuby/commit/f7f88c3e5734fd33143aee7f067a1e2b5a7230ff
  Author: Watson <watson1978 at gmail.com>
  Date:   2011-12-07 (Wed, 07 Dec 2011)

  Changed paths:
    M ext/socket/socket.c

  Log Message:
  -----------
  ext/socket: UNIXSocket#path return duplicated string of path.

Test Script:
----
require 'socket'
require 'test/unit/assertions.rb'
include Test::Unit::Assertions
$path = "/tmp/test.sock"
File.delete($path) if File.exists?($path)
UNIXServer.open($path) {|serv|
  assert_not_equal($path.object_id, serv.path.object_id)
  assert_equal(false, serv.path.frozen?)
  $path.freeze
  assert_equal(false, serv.path.frozen?)
}


  Commit: 7bfae053c8c172af0234a7ba4946751ee77feb26
      https://github.com/MacRuby/MacRuby/commit/7bfae053c8c172af0234a7ba4946751ee77feb26
  Author: Watson <watson1978 at gmail.com>
  Date:   2011-12-07 (Wed, 07 Dec 2011)

  Changed paths:
    M ext/io/wait/extconf.rb
  R ext/io/wait/lib/nonblock.rb
  M ext/io/wait/wait.c

  Log Message:
  -----------
  ext/io/wait: update with CRuby1.9.2


  Commit: 6243cb568a0b4a721fc7da01fb8964462da37d38
      https://github.com/MacRuby/MacRuby/commit/6243cb568a0b4a721fc7da01fb8964462da37d38
  Author: Watson <watson1978 at gmail.com>
  Date:   2011-12-07 (Wed, 07 Dec 2011)

  Changed paths:
    A ext/io/nonblock/extconf.rb
  A ext/io/nonblock/nonblock.c

  Log Message:
  -----------
  ext/io/nonblock: import from CRuby1.9.2


  Commit: f6de7dfdcb3f07dcb882bd83252d0f9e46e7626b
      https://github.com/MacRuby/MacRuby/commit/f6de7dfdcb3f07dcb882bd83252d0f9e46e7626b
  Author: Watson <watson1978 at gmail.com>
  Date:   2011-12-08 (Thu, 08 Dec 2011)

  Changed paths:
    M rakelib/builder/builder.rb

  Log Message:
  -----------
  build the 'ext/io'


Compare: https://github.com/MacRuby/MacRuby/compare/32b6ef3...f6de7df


More information about the macruby-changes mailing list