[#6864] ruby 1.8.4 rc breaks alias_method/rails in bad ways — "Ara.T.Howard" <ara.t.howard@...>

20 messages 2005/12/09
[#6870] Re: ruby 1.8.4 rc breaks alias_method/rails in bad ways — =?ISO-8859-15?Q?Florian_Gro=DF?= <florgro@...> 2005/12/12

Ara.T.Howard wrote:

[#6872] Re: ruby 1.8.4 rc breaks alias_method/rails in bad ways — ara.t.howard@... 2005/12/12

On Tue, 13 Dec 2005, [ISO-8859-15] Florian Growrote:

[#6873] Re: ruby 1.8.4 rc breaks alias_method/rails in bad ways — James Edward Gray II <james@...> 2005/12/12

On Dec 12, 2005, at 1:19 PM, ara.t.howard@noaa.gov wrote:

[#6874] Re: ruby 1.8.4 rc breaks alias_method/rails in bad ways — ara.t.howard@... 2005/12/12

On Tue, 13 Dec 2005, James Edward Gray II wrote:

[#6891] Time.utc! and Time.localtime! — Daniel Hobe <hobe@...>

Writing a script yesterday I found out, much to my surprise, that the

16 messages 2005/12/14

[#6918] change to yaml in 1.8.4 — ara.t.howard@...

14 messages 2005/12/16

[#6934] 1.8.x, YAML, and release management — Ryan Davis <ryand-ruby@...>

I'm concerned that 1.8.3's acceptance of non-backwards-compatible

28 messages 2005/12/18

[#6996] Problems building 1.8.4 with VS8 C++ Express Edition (cl 14.00) — Austin Ziegler <halostatue@...>

Visual Studio C++ 2005 Express Edition (VS 8.0)

20 messages 2005/12/27

Re: ruby 1.8.4 preview3

From: Christian Neukirchen <chneukirchen@...>
Date: 2005-12-23 18:54:40 UTC
List: ruby-core #6988
Yukihiro Matsumoto <matz@ruby-lang.org> writes:

> Hi,
>
> I have just put 1.8.4 preview3 on the server.
>
>   ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.4-preview3.tar.gz
>   1ba94874e1a253d3f1373533553080ae
>
> Happy Hacking.

Darwin lilith 7.9.0 Darwin Kernel Version 7.9.0: Wed Mar 30 20:11:17 PST 2005; root:xnu/xnu-517.12.7.obj~1/RELEASE_PPC  Power Macintosh powerpc

gcc version 3.3 20030304 (Apple Computer, Inc. build 1666)

Builds fine, two minor patches to make the test-suite run completely
are below.

I was *not* yet able to run a Ruby/Tk program yet, since tkutil
doesn't seem to be built at all (but is 'required' all over the
codebase).  Does anymore know more about this?


From nobody Mon Sep 17 00:00:00 2001
Subject: [PATCH] Fix lib/drb/drb.rb to fallback to "localhost"
From: Christian Neukirchen <chneukirchen@gmail.com>
Date: 1135355472 +0100

---

 lib/drb/drb.rb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

59e15c5c1067eb6f2e1d135a14a7e7443ccd6b61
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index 2177af8..46c2549 100644
--- a/lib/drb/drb.rb
+++ b/lib/drb/drb.rb
@@ -829,7 +829,7 @@ module DRb
       begin
         Socket::gethostbyname(host)[0]
       rescue
-        host
+        'localhost'
       end
     end
 
-- 
1.0.GIT

From nobody Mon Sep 17 00:00:00 2001
Subject: [PATCH] Increment timeout for Process.waitpid to make the test work on slow machines
From: Christian Neukirchen <chneukirchen@gmail.com>
Date: 1135358549 +0100

---

 test/ruby/test_signal.rb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

cb36f523a54925194a7f5a21d0e295544cf8bd9c
diff --git a/test/ruby/test_signal.rb b/test/ruby/test_signal.rb
index 8daa1cf..43e16b8 100644
--- a/test/ruby/test_signal.rb
+++ b/test/ruby/test_signal.rb
@@ -50,7 +50,7 @@ class TestSignal < Test::Unit::TestCase
       assert_nothing_raised("[ruby-dev:26128]") {
         Process.kill(:USR1, pid)
         begin
-          Timeout.timeout(1) {
+          Timeout.timeout(10) {
             Process.waitpid pid
           }
         rescue Timeout::Error
-- 
1.0.GIT




Happy hacking and I hope the issues can be fixed until the release.

> matz.
-- 
Christian Neukirchen  <chneukirchen@gmail.com>  http://chneukirchen.org

In This Thread