Activity
From 10/05/2010 to 10/11/2010
10/11/2010
-
11:55 PM Bug #3677: unable to run certain gem binaries' in windows 7
- =begin
Hello,
A patch has been provided in #3805:
http://redmine.ruby-lang.org/issues/show/3805
Also has been applied in r29200
=end
-
11:17 PM Bug #3927 (Third Party's Issue): Ruby can't interprete rmagick library
- =begin
When I use ruby 1.9.2 with RVM and rmagick gem 2.13.1 with rails 3.0.0, I receive this super-error on my project. Follow the backtrace.
Completed 200 OK in 43ms (Views: 41.3ms)
/Users/weldyss/.rvm/gems/ruby-1.9.2-p0@fo... -
09:18 PM Bug #3920 (Rejected): WEBrick::HTTPServlet::ProcHandler が動かない
- =begin
=end
-
02:17 PM Bug #3926 (Closed): Errno#message encoding is right ?
- =begin
This issue was solved with changeset r29438.
Akio, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
01:10 PM Bug #3926 (Closed): Errno#message encoding is right ?
- =begin
Errno::*#messageは、strerrで取ってきたメッセージなので、encodingは、localeに合わせたものを設定すべきと思うのですがどうでしょうか?
irb(main):001:0> Errno::EINVAL.new.message
=> "Invalid argument"
irb(main):002:0> Errno::EINVAL.new.message.encoding
=> #<Encoding:ASC... -
11:23 AM Revision 3f34ecc5 (git): * lib/net/http.rb (HTTP.get): specify ASCII-8BIT as the result
- encoding of Zlib::GzipReader.
http://hibari.2ch.net/test/read.cgi/tech/1281473294/271
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29442 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 09:34 AM Revision 57a9cb4c (git): * 2010-10-11
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@29441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 09:34 AM Revision 329467bb (git): * parse.y (opt_block_arg): Allow a trailing comma at the end of
- an argument list.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@29440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:43 AM Revision c1b24588 (git): * error.c (syserr_initialize): use mesg's encoding when locale
- encoding is US-ASCII. If locale encoding is not US-ASCII,
assume err has non ASCII characters. [ruby-dev:42358]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:37 AM Bug #3925 (Closed): setting Tempfile/StringIO to $std* before startup causes [BUG] Segmentation fault
- =begin
This issue was solved with changeset r29435.
Akio, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
04:03 AM Bug #3925 (Closed): setting Tempfile/StringIO to $std* before startup causes [BUG] Segmentation fault
- =begin
$stdout, in, errにTempfileやStringIOをセットするライブラリを-rで読み込むと[BUG]となります。
例)
#d.rb
require 'stringio'
$stdout = StringIO.new
#---------------------------------
を作って
$ruby -r./d -e 'puts "hello"'
-e: [BUG] Segmentation ... -
05:15 AM Revision 44691b90 (git): * error.c (syserr_initialize): set the encoding of Errno::*#message
- as locale. [ruby-dev:42358]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10/10/2010
-
09:54 PM Revision 47cb5a93 (git): * ext/stringio/stringio.c (strio_set_encoding):
- StringIO#set_encoding can get 2nd argument and optional hash
for API compatibility to IO. [ruby-dev:42356]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 09:29 PM Revision 6221ba10 (git): * 2010-10-11
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:29 PM Revision e1646652 (git): * io.c (rb_io_set_encoding): use rb_funcall2 when the io is not
- a T_FILE. [ruby-dev:42356]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29435 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 09:45 AM Revision 72ef2198 (git): * lib/set.rb (Set#replace): Apply a bit of optimization.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29434 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:15 AM Bug #3924 (Closed): Performance bug (in require?)
- =begin
Running irb < /dev/null in 1.9.2 causes 3016 calls to lstat64.
For instance, there is a sequence of 28 repetitions each of lstat calls to all 6 non-empty path prefixes of /opt/local/lib/ruby1.9/1.9.1/irb.rb -- a total of 17... -
04:31 AM Feature #3922: Syntax awkwardness
- =begin
Ok, first i was surprised by the fact that it is possible to embed
multiple statements inside a parenthesised expression:
[code]
(4; 1) #=> 1
### OR:
(4
1) #=> 1
[/code]
But ok, maybe this is needed somewhere (do you have... -
12:54 AM Feature #3922 (Feedback): Syntax awkwardness
- =begin
=end
-
12:20 AM Feature #3922: Syntax awkwardness
- =begin
Hi,
In message "Re: [ruby-core:32731] [Ruby 1.9-Bug#3922][Open] Syntax awkwardness"
on Sat, 9 Oct 2010 22:39:10 +0900, Lasse Fabisch <redmine@ruby-lang.org> writes:
|[code]
|1 + (2; 1) #=> 2
|puts(1; 2) #=> syntax er... -
02:21 AM Feature #3436: Spawn the timer thread lazily
- =begin
On Sun, Oct 10, 2010 at 01:27:53AM +0900, Mark Somerville wrote:
> I've attached a slightly improved patch which fixes a rare case when the
> timer thread may not be stopped correctly after the last thread has
> exited.
Oop... -
01:28 AM Feature #3436: Spawn the timer thread lazily
- =begin
On Fri, Oct 08, 2010 at 11:12:47PM +0900, Nobuyoshi Nakada wrote:
> Updated patch with new test.
The new test is much better, thanks a lot.
On Fri, Oct 08, 2010 at 11:36:13PM +0900, SASADA Koichi wrote:
> (2010/10/08 15:1... -
01:31 AM Bug #3923 (Closed): bad error messages for Winsock (on Win32)
- =begin
Winsock関係のErrnoのメッセージが異常です。
例)Errno::EWOULDBLOCK -> 既にパスが置き換えられているドライブ上のディレクトリにドライブを接続しようとしました。
この場合、正しくは「ブロック不可のソケット操作をすぐに完了できませんでした。」です。
理由)WinSock固有のエラーコードをerrnoに変換したまま、strerrorを呼び出しているため。
パッチとテストを添付します。
=end
-
01:25 AM Feature #3917: [proposal] called_from() which is much faster than caller()
- =begin
桑田です。日本語が文字化けしてたようで申し訳ないです。
2010/10/8 SASADA Koichi <ko1@atdot.net>:
> ささだです。
>
> 基本的に賛成なんですが、alternative なアイデアということで。
>
>
> (1) caller の拡張案
>
> (a) 配列の要素数を指定するオプショナル引数を加える
>
> caller(n, m) => n 個上の caller から、... -
01:20 AM Revision 3ec721b9 (git): * configure.in (RUBY_MINGW32): canonicalize as like mswin version.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:58 AM Feature #3845: "in" infix operator
- =begin
Hi,
2010/10/9 "Martin J. Dürst" <duerst@it.aoyama.ac.jp>:
> [a, b, c] includes x, not the other way round. Of course, you can change the
> verb to passive voice (includ*ed*) and make the former object (x) a
> grammatical su...
10/09/2010
-
10:38 PM Feature #3922 (Rejected): Syntax awkwardness
- =begin
[code]
1 + (2; 1) #=> 2
puts(1; 2) #=> syntax error
puts((1; 2)) # like: puts 2
puts (3)*2 #=> 6
puts(3)*2 #=> nil-error
puts (1; 2) #=> syntax error
puts (1; 2)*3 #=> syntax error
puts ((1; 2))*3 # like: puts 6
... -
09:02 PM Feature #3845: "in" infix operator
- =begin
Hello Yusuke,
On 2010/10/08 21:29, Yusuke ENDOH wrote:
> Hi,
>
> 2010/10/8 "Martin J. Dürst"<duerst@it.aoyama.ac.jp>:
>> I would understand that if it were [a, b, c].included? x
>> But it's include?, so the order seems ju... -
08:33 PM Revision ff6ce776 (git): * vm_core.h (rb_signal_buff_size, rb_signal_exec): moved
- declarations from thread.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:12 AM Feature #3901: WIN32OLE_VARIANT.new method lacks consistency
- =begin
artonです。
> で、IDispatch
> のラッパーにした方が良い理由が何かありますか?
> どちらかというと TypeError
> が、元々、私が意図した動作だったような気
> がしています。
意図はそうだと思いますが、IDispatchを与える(作る)方法と
してWIN32OLE_VARIANTはちょうど良い位置にあるからです。
もっとも、ユースケースは思いつかないのでどちらもTypeError
でも異論はないです... -
09:52 AM Feature #3901: WIN32OLE_VARIANT.new method lacks consistency
- =begin
助田です。
On Sun, Oct 03, 2010 at 09:44:38PM +0900, Akio Tajima wrote:
> WIN32OLE_VARIANT.new(Kernel)はTypeError: can not convert WIN32OLE_VARIANT from type Moduleとなります。
> WIN32OLE_VARIANT.new([Kernel])は、KernelにIDispatchをラップしたW... -
07:54 AM Revision 0ac2f951 (git): * configure.in (RSHIFT): quote to get rid of argument expansion
- for autoconf 2.68.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:14 AM Revision fd17a909 (git): fix typos
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:13 AM Bug #3847: URI.join does not join multiple paths
- =begin
Hmm, so you say add more exmaple like following?
# p URI.join('http://example.com', '/foo', 'bar', '../baz')
# # => #<URI::HTTP:0x801a92af0 URL:http://example.com/foo/baz>
=end
-
01:25 AM Bug #3847: URI.join does not join multiple paths
- =begin
It seems that the expected behavior of a join method like this would be to concatenate any number of strings into a full url. Basically this should operate in near identical fashion as Array#join with url escaping and protocol va... -
02:00 AM Revision 549b0c53 (git): * thread.c (thread_reset_event_flags, exec_event_hooks): ignore
- hooks marked as removed.
* thread.c (thread_exec_event_hooks): remove hooks to be removed.
* thread.c (rb_threadptr_remove_event_hook, rb_remove_event_hook):
defer removing hooks if running the hooks. [ruby-dev:42350]
git-svn-id: s... -
01:51 AM Revision c3032fa7 (git): * thread.c (rb_threadptr_exec_event_hooks): suppress each event
- hooks separately.
* thread.c (thread_suppress_tracing): split from
ruby_suppress_tracing, accepting thread pointer and event mask.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10/08/2010
-
11:36 PM Feature #3436: Spawn the timer thread lazily
- =begin
(2010/10/08 15:12), Nobuyoshi Nakada wrote:
> Hi,
>
> At Tue, 5 Oct 2010 03:09:42 +0900,
> Mark Somerville wrote in [ruby-core:32686]:
>> The thread is now only used when it is required to schedule
>> Ruby threads. When th... -
11:13 PM Feature #3436: Spawn the timer thread lazily
- =begin
Hi,
At Tue, 5 Oct 2010 03:09:42 +0900,
Mark Somerville wrote in [ruby-core:32686]:
> The thread is now only used when it is required to schedule
> Ruby threads. When there is only the main thread, signals are
> handled imm... -
11:21 PM Bug #3686: Error in parsing musicbrainz.org with rexml
- =begin
It seems that this bug was fixed. I can parse the page with ruby 1.9.2p0 (2010-08-18 revision 29036) [i686-linux] under ubuntu 10.10.
=end
-
11:16 PM Revision 88533a53 (git): * thread.c (rb_threadptr_remove_event_hook): fix typo.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:29 PM Feature #3845: "in" infix operator
- =begin
Hi,
2010/10/8 "Martin J. Dürst" <duerst@it.aoyama.ac.jp>:
> I would understand that if it were [a, b, c].included? x
> But it's include?, so the order seems just fine. Easy to read as
> "does [a, b, c] include x?". Any othe... -
04:17 PM Feature #3845: "in" infix operator
- =begin
Hello Yusuke,
On 2010/10/05 23:28, Yusuke ENDOH wrote:
> Hi,
>
> 2010/9/24 "Martin J. Dürst"<duerst@it.aoyama.ac.jp>:
>> Just my two cents, but I don't see why this case is important enough to
>> warrant deviating from th... -
07:24 PM Bug #3920: WEBrick::HTTPServlet::ProcHandler が動かない
- =begin
すみません。
WEBrick::HTTPServer#mount_proc を使うんですね。
リジェクトしてください。
=end
-
07:18 PM Bug #3920: WEBrick::HTTPServlet::ProcHandler が動かない
- =begin
さっき付けた添付ファイルはテストです。
=end
-
07:16 PM Bug #3920 (Rejected): WEBrick::HTTPServlet::ProcHandler が動かない
- =begin
以下のパッチで直りますが、テストが必要なように思います。
Index: httpservlet/prochandler.rb
===================================================================
--- httpservlet/prochandler.rb (revision 29410)
+++ httpservlet/prochandler.rb (worki... -
06:38 PM Bug #3919: Ruby in PowerTOP - too many CPU wakeups
- =begin
On Fri, Oct 08, 2010 at 03:28:26PM +0900, Suraj Kurapati wrote:
> Bug #3919: Ruby in PowerTOP - too many CPU wakeups
> http://redmine.ruby-lang.org/issues/show/3919
This is a duplicate of #3436.
> Ruby causes too many CPU... -
06:08 PM Bug #3919: Ruby in PowerTOP - too many CPU wakeups
- =begin
On Oct 7, 2010, at 23:28 , Suraj Kurapati wrote:
> Ruby causes too many CPU wakeups according to Intel's PowerTOP tool.
> For example, this simple I/O bound program causes 99 wakeups/second
> and accounts for 14% of the CP... -
03:28 PM Bug #3919 (Closed): Ruby in PowerTOP - too many CPU wakeups
- =begin
Hello,
Ruby causes too many CPU wakeups according to Intel's PowerTOP tool.
For example, this simple I/O bound program causes 99 wakeups/second
and accounts for 14% of the CPU wakeups on my system:
ruby -e gets
... -
03:14 PM Feature #3010 (Closed): slow require gems in ruby 1.9.1
- =begin
thanks for reminder
=end
-
03:08 PM Feature #3010: slow require gems in ruby 1.9.1
- =begin
I think this issue can be closed;
the Ruby 1.9.2 release fixed it.
=end
-
12:38 PM Feature #3917: [proposal] called_from() which is much faster than caller()
- =begin
ささだです。
基本的に賛成なんですが、alternative なアイデアということで。
(1) caller の拡張案
(a) 配列の要素数を指定するオプショナル引数を加える
caller(n, m) => n 個上の caller から、m 個だけ情報を取り出す
caller(0, 1) => ['...']
caller(0, 2) => ['...', '...']
*一個しか... -
08:45 AM Feature #3917 (Closed): [proposal] called_from() which is much faster than caller()
- =begin
I propose to introduce Kernel#called_from() which is similar to caller()
but much faster than it.
Background
----------
There are some cases to want to know from where current method is called.
In this case, K... -
01:54 AM Revision 9c06fa13 (git): * common.mk (RBCONFIG): depends on version.h due to
- RUBY_PATCHLEVEL. [ruby-core:32709]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:52 AM Revision a1d7e691 (git): git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:52 AM Revision 26ea7068 (git): * common.mk (RBCONFIG): depends on version.h due to
- RUBY_PATCHLEVEL. [ruby-core:32709]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@29424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:27 AM Bug #3915 (Closed): [PATCH] fix typo in csv documentation
- =begin
This issue was solved with changeset r29422.
okkez, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
10/07/2010
-
11:46 PM Feature #3916 (Closed): Add flag to ruby to make warnings fatal.
- =begin
I have a feature request: Please add a flag to the ruby command line to make warnings fatal.
It would be really handy when debugging and testing to make warnings fatal.
It's not always obvious what bit of code is causi... -
11:43 PM Bug #3915 (Closed): [PATCH] fix typo in csv documentation
- =begin
There are some typos in csv documentation.
This patch fixes it.
=end
-
09:01 PM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
On Thu, Oct 7, 2010 at 3:33 AM, U.Nakamura <usa@garbagecollect.jp> wrote:
> Hello,
>
> In message "[ruby-core:32695] [Ruby 1.9-Bug#3889] Incorrectly detected i686-w64-mingw32 as x64-mingw"
>
>> Who is the maintainer that pro... -
03:33 PM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
Hello,
In message "[ruby-core:32695] [Ruby 1.9-Bug#3889] Incorrectly detected i686-w64-mingw32 as x64-mingw"
on Oct.05,2010 23:16:07, <redmine@ruby-lang.org> wrote:
> Please apologize my lack of understanding of Ruby dev... - 03:25 PM Revision b6c817e3 (git): * 2010-10-08
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:25 PM Revision b6e0e981 (git): * lib/csv.rb: Fixing documentation typos. [ruby-core:32712]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:10 AM Revision 3958011e (git): * cygwin/GNUmakefile.in, win32/Makefile.sub (RCFILES): depend on
- real config.rb file. [ruby-core:32709]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@29421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:10 AM Revision 0dd56a82 (git): * cygwin/GNUmakefile.in, win32/Makefile.sub (RCFILES): depend on
- real config.rb file. [ruby-core:32709]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 12:48 AM Revision 9b158969 (git): * 2010-10-07
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:48 AM Revision fba68f4c (git): * vm_exec.c (vm_exec_core): Treat clang as non gcc on this
- context: It has __asm__ but doesn't works well.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10/06/2010
-
03:27 PM Bug #3911 (Closed): WEBrick::HTTPAuth::ProxyDigestAuth#check_uri should be private
- =begin
WEBrick::HTTPAuth::DigestAuth#check_uri は private なので WEBrick::HTTPAuth::ProxyDigestAuth#check_uri も private にするべきだと思います。
=end
-
12:37 PM Bug #3788 (Closed): URI cannot parse IPv6 addresses propertly
- =begin
This issue was solved with changeset r29416.
Adam, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
11:50 AM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
On Wed, Oct 06, 2010 at 03:41:01AM +0900, Luis Lavena wrote:
> On Tue, Oct 5, 2010 at 2:17 PM, Aaron Patterson
> <aaron@tenderlovemaking.com> wrote:
> > On Tue, Oct 05, 2010 at 02:03:23PM +0900, Shyouhei Urabe wrote:
> >> Iss... -
03:41 AM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
On Tue, Oct 5, 2010 at 2:17 PM, Aaron Patterson
<aaron@tenderlovemaking.com> wrote:
> On Tue, Oct 05, 2010 at 02:03:23PM +0900, Shyouhei Urabe wrote:
>> Issue #3889 has been updated by Shyouhei Urabe.
>>
>> Status changed fr... -
02:17 AM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
On Tue, Oct 05, 2010 at 02:03:23PM +0900, Shyouhei Urabe wrote:
> Issue #3889 has been updated by Shyouhei Urabe.
>
> Status changed from Closed to Open
>
> Reopening. We need a port maintainer.
I think Luis should be ... -
02:16 AM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
On Tue, Oct 05, 2010 at 08:59:06PM +0900, wanabe wrote:
> 2010/10/5, Usaku NAKAMURA <redmine@ruby-lang.org>:
> > Who make the final decision?
> > Wanabe, are you (or, do you want to become) the maintainer of mingw port?
>
>... -
10:32 AM Bug #3909: CGI.unescape("あ%E3%81%82")で例外
- =begin
なかださんによる、http://www.atdot.net/sp/raw/7hhs9l のパッチの方がforce_encodingの適用が1回なのでよいかと思います。
=end
-
10:13 AM Bug #3909 (Closed): CGI.unescape("あ%E3%81%82")で例外
- =begin
tDiaryの方で例外が起きるという報告がありました。
irb(main):004:0> CGI.unescape("あ%E3%81%82")
Encoding::CompatibilityError: incompatible character encodings: UTF-8
and ASCII-8BIT
from /usr/local/ruby-trunk/lib/ruby/1.9.1/cgi/util.rb... -
03:32 AM Revision 4f8376c6 (git): describe the reporter.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:31 AM Revision e5a47fb6 (git): describe URI::Generic#hostname and URI::Generic#hostname=.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:30 AM Revision 5fd45a4b (git): * lib/uri/generic.rb (URI::Generic#hostname): new method.
- (URI::Generic#hostname=): ditto.
* lib/open-uri.rb: use URI#hostname
* lib/net/http.rb: ditto.
[ruby-core:32056]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:52 AM Revision 915ae780 (git): * io.c (fptr_finalize): write_mutex might have been destroyed
- already in finalization phase, as the order of finalizers is not
guaranteed. rb_mutex_t should be used in place of Mutex object
in the future.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29415 b2dd03c8-39d4-4d8f-98ff-823fe69b... -
12:41 AM Feature #3908: private constant
- =begin
On Tue, Oct 5, 2010 at 17:19, Yusuke Endoh <redmine@ruby-lang.org> wrote:
> What do you think?
Yes! Finally! Thanks!
=end
-
12:19 AM Feature #3908 (Closed): private constant
- =begin
Hi,
I'd propose "private constant."
Private constant provides method-like visibility for constant.
=== Sample code ===
module SomeModule
class PublicClass
...
end
class PrivateC... - 12:08 AM Revision a413c84e (git): * 2010-10-06
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:08 AM Revision 046a5818 (git): * vm_core.h: add missing prototypes.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10/05/2010
-
11:33 PM Feature #3845: "in" infix operator
- =begin
Hi,
2010/9/29 Roger Pack <rogerdpack2@gmail.com>:
> I like it. There's a kind of elegance in it
>
> if a in [1,2,3]
> p ' it is in 1,2,3'
> end
>
> It works well with my head. +1
Thanks, but it is a bit differ... -
11:29 PM Feature #3845: "in" infix operator
- =begin
Hi,
2010/9/24 "Martin J. Dürst" <duerst@it.aoyama.ac.jp>:
> Just my two cents, but I don't see why this case is important enough to
> warrant deviating from the usual, object-oriented syntax (which may not
> always look opt... -
11:15 PM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
Hello,
Please apologize my lack of understanding of Ruby development hierarchy, but the revert of 'mingw' specifics in mkexports breaks the mingw-w64 work.
Who is the maintainer that provides "best effort" in relation t... -
10:26 PM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
I commited r29411 to revert win32/mkexports.rb.
Sorry again.
=end
-
08:59 PM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
2010/10/5, Usaku NAKAMURA <redmine@ruby-lang.org>:
> Who make the final decision?
> Wanabe, are you (or, do you want to become) the maintainer of mingw port?
No, I am not. (and I do not want to)
> I'm very dissatisfied wi... -
01:56 PM Bug #3889 (Open): Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
Reopening. We need a port maintainer.
=end
-
01:36 PM Bug #3889: Incorrectly detected i686-w64-mingw32 as x64-mingw
- =begin
Who make the final decision?
Wanabe, are you (or, do you want to become) the maintainer of mingw port?
I'm very dissatisfied with the current state, but I don't have a mind to
object to the maintainer's decision.
There... -
11:14 PM Bug #3907 (Closed): WIN32OLE_TYPELIB Can't load while envvar in the pathname .
- =begin
WIN32OLE_TYPELIB.newで、TypeLibのパス名に環境変数が含まれているとロードに失敗します。
以下のパッチで修正します。(REG_EXPAND_SZだった場合にExpnadEnvironmentStringsで展開)
添付のtest_win32ole_typelib.rbのパッチは、ADO 2.0のロードを試すものです。
ただし、ADO 2.0はWindows7ではREG_EXPAND_SZを使っていますが、Windows... - 01:20 PM Revision cd936ca5 (git): * 2010-10-05
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:20 PM Revision 349c3c7a (git): * win32/mkexports.rb: revert r29320 and r29402.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:36 AM Feature #3906 (Closed): Initializing and loading Rails environment takes really long on Windows XP
- =begin
Initializing and loading Rails environment takes really long on Windows XP. I experience anywhere from 45secs to 2mins. After consulting a few people, I was told that it's a Ruby I/O issue on Windows. There's even a plugin to... -
06:56 AM Feature #3905 (Closed): rb_clear_cache_by_class() called often during GC for non-blocking I/O
- =begin
This still causes performance problems with frequent EAGAIN compared to 1.9.1
While akr fixed extend to no longer clear cache with empty modules in r28813,
the GC phase still scans and clears the cache when the extended o... -
03:09 AM Feature #3436: Spawn the timer thread lazily
- =begin
I've attached a patch to fix this.
The thread is now only used when it is required to schedule Ruby threads. When there is only the main thread, signals are handled immediately in sighandler().
I only have access to Lin...