Activity
From 05/07/2010 to 05/13/2010
05/13/2010
-
10:48 PM Bug #3287 (Closed): proc.cのコンパイルでウォーニング
- =begin
proc.cのコンパイルでウォーニングが出ます。
gcc -O3 -g -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -fPIC -pipe -I. -I.ext/include/i386-netbsdelf5.99.29 -I./incl... -
10:27 PM Revision 4eb19660 (git): * marshal.c (w_float): strip ".0" from end for rubyspec.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:09 PM Revision ccbdebf5 (git): * test/ruby/test_io_m17n.rb (test_textmode_paragraph_binaryread):
- use opened pipes by with_pipe.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:47 PM Bug #3286: segfault in method_missing -> method -> method_missing recursive loop
- =begin
Hi,
This duplicates #1813. This issue also occurs on trunk.
Essentially, infinite recursion may cause segv. The segv is rescued
by using sigaltstack on Linux, but it will not on platform where
sigaltstack is not a... -
08:11 PM Bug #3286: segfault in method_missing -> method -> method_missing recursive loop
- =begin
Oh, nearly forgot it: It does not segfault if I don't use threads. It also does not segfault in a normal infinite recursive loop, i.e. no method_missing
=end
-
08:09 PM Bug #3286 (Closed): segfault in method_missing -> method -> method_missing recursive loop
- =begin
the following code segfaults in 1.9.1 (and ruby-head) but works in 1.8.x:
class Foo
def bar
unknown_variable
end
def method_missing(m, *args)
bar
end
end
Thread.new do
begin
Fo... - 04:20 PM Revision 308be9c8 (git): * 2010-05-14
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27790 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:20 PM Revision 50587316 (git): * vm_core.c (rb_thread_struct): add a field for sigaltstack.
- * thread_pthread.c (thread_start_func_1): initialize machine stack
information.
* thread.c (thread_start_func_2): set sigaltstack for each sub thread.
[ruby-core:24540] [ruby-core:30207]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/... -
03:30 PM Bug #3192 (Assigned): Missing Set#keep_if, select! [patch]
- =begin
=end
-
12:57 PM Bug #1576 (Closed): TestFile failures in windows
- =begin
This issue was solved with changeset r27769.
Roger, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
12:10 AM Bug #1576: TestFile failures in windows
- =begin
yeah the only TestFile failures I currently get is:
34) Failure:test_gets_para_extended_file(TestFile) [C:/dev/ruby/downloads/ruby_trunk_no_patches/test/ruby/test_file.rb:94]:mode = <>.<"a"> expected but was<"\na">.
(f... -
12:41 PM Revision a22df394 (git): * missing/ffs.c (ffs): fixed for non-zero values.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27788 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:39 PM Revision cb4133c8 (git): add a test.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27787 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:55 AM Feature #3285 (Closed): BigDecimal.mode should be managed thread-safely
- =begin
The current BigDecimal is not managed their modes in thread-safe manner.
They should be thread-safe.
=end
-
10:06 AM Revision fa086089 (git): * test/scanf/test_scanf.rb (ScanfTests#each_test): yield in order.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:45 AM Revision 30f63702 (git): * ext/io/console/console.c (get_write_fd): return primary fd if no
- io is tied for writing.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:45 AM Revision 8653bd97 (git): * test/ruby/test_io_m17n.rb (TestIO_M17N#test_cbuf_select),
- (TestIO_M17N#test_textmode_paragraphmode): close pipes.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 09:20 AM Revision 8bc7d22f (git): merge from trunk (r27782)
- * io.c (swallow): should use more_char() instead of fill_cbuf().
suggested by akr.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 09:16 AM Revision daac3ed0 (git): * io.c (swallow): should use more_char() instead of fill_cbuf().
- suggested by akr.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:05 AM Feature #2542: URI lib should be updated to RFC 3986
- On Wed, May 12, 2010 at 8:01 PM, Hedge Hog <redmine@ruby-lang.org> wrote:
> Issue #2542 has been updated by Hedge Hog.
> ...
we will not only depend on uriparser C library but also will require
libcpptest to be able to configure and c... -
08:01 AM Feature #2542: URI lib should be updated to RFC 3986
- Rather than reinvent anything. Consider employing an FFI interface to uriparser:
http://uriparser.sourceforge.net/
not sure if there is a port for windows or if an equivalent windows lib is available?
-
08:56 AM Revision 552243aa (git): * ext/io/console/console.c (console_set_echo, console_echo_p): use
- primary fd. [ruby-dev:41309]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:19 AM Revision 483ef372 (git): * vm_insnhelper.c (vm_invoke_block): iseq_t.type is VALUE.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:32 AM Revision 266a9ea5 (git): * test/ruby/test_process.rb: skip some tests on Windows.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 05:52 AM Revision d6b1887d (git): * array.c: Harmonize documentation, in particular regarding:
- - methods returning enumerators
- array methods and argument naming (array -> ary, an_array -> new_ary)
- minor improvements, typo fixed and styling issues
Other documentation errors fixed:
- return value was self instead ... - 05:49 AM Revision 4afa9ed0 (git): * array.c: Harmonize documentation, in particular regarding:
- - methods returning enumerators
- array methods and argument naming (array -> ary, an_array -> new_ary)
- minor improvements, typo fixed and styling issues
Other documentation errors fixed:
- return value was self instead ... -
05:21 AM Bug #3283: SystemStackError Backtrace returns String not Array
- =begin
Seconded. Returning two different types of data in a backtrace needlessly complicates error handling code.
=end
-
05:15 AM Bug #3283 (Closed): SystemStackError Backtrace returns String not Array
- =begin
In this commit http://github.com/shyouhei/ruby/commit/ecd11fb371b5f4a00d0b0006b325de3c5437b8d2 changes were introduced that affected how SystemStackError's backtrace was handled. The changes resulted in SystemStackError's backtra... - 04:38 AM Revision 2d8fd61a (git): * test/ruby/test_io_m17n.rb (test_stdin_external_encoding_with_reopen): skip
- on Windows.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27776 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 04:37 AM Revision 8092a810 (git): * test/ruby/test_io_m17n.rb (test_stdin_external_encoding_with_reopen): skip
- on Windows.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:30 AM Revision cf32125c (git): * marshal.c (w_float): use minimal representation.
- * numeric.c (ruby_dbl2cstr): split from rb_float_new.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:11 AM Bug #2496: Delegate: #methods and #public_methods should return delegated methods too
- =begin
=end
-
04:10 AM Bug #2224: lib/delegate: operator delegation
- =begin
=end
-
04:09 AM Revision a81b47ac (git): * vm_core.h (rb_vm_get_sourceline): moved from eval_intern.h for
- vm_dump.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:09 AM Revision 04daf205 (git): * vm_core.h (rb_vm_get_sourceline): moved from eval_intern.h for
- vm_dump.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 04:05 AM Revision 8254aea4 (git): * 2010-05-13
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 04:05 AM Revision fab26158 (git): merge from trunk (r27768-r27770)
- * io.c (swallow): support text mode and UTF-16/32 as internal encoding.
[Bug #1576]
* io.c (io_shift_cbuf): read and throw it away when str is NULL.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27771 b2dd03c8-39d4... - 04:03 AM Revision 44d8ab72 (git): * io.c (swallow): small optimize.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:56 AM Revision 6f3791f4 (git): [Bug #1576]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:55 AM Revision ef799280 (git): * io.c (swallow): support text mode and UTF-16/32 as internal encoding.
- * io.c (io_shift_cbuf): read and throw it away when str is NULL.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:57 AM Revision 2603874f (git): * properties.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:42 AM Bug #3274: BINARY should not be ASCII-compatible
- =begin
遠藤です。
2010年5月12日23:36 Yukihiro Matsumoto <matz@ruby-lang.org>:
> |mameさんはチケットの整理をかなりやってくださってますし、個人的には賛成します。こうして判断能力が鈍ることもありますので。
>
> 判断能力が鈍るのはお互い様なのですが、まあ、バックアップはあっ
> た方がよいですよね。
言語設計者は判断能力が鈍ったら困りますが、リリースマネージャは
保守的になればい... -
02:20 AM Bug #3277: win32ole cannot print?
- =begin
=end
-
01:05 AM Bug #2223: lib/delegate: security model?
- =begin
Hi,
Could you create and send a patch?
If rubyspec and make check passes, and if there is no objection,
please commit it by yourself.
You can handle #2224 and #2496 in a similar way. You have control.
--
Yu... - 12:45 AM Revision 720151bc (git): * win32/Makefile.sub: link with ffs.obj.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:32 AM Feature #1961: Kernel#__dir__
- =begin
Any feedback on my patch for __dir__ (or Narihiro Nakamura's patch for __dir__)?
Still wishing for this.
Thanks.
-rp
=end
-
12:24 AM Feature #839: Add code on each line of a backtrace output to the screen
- =begin
Any feedback on this? (objectify Exception#backtrace et al)
Thanks.
=end
-
12:22 AM Bug #1795: Provide SMTP STARTTLS support
- =begin
> Is there a non-obvious reason why this isn't a valid backport from 1.8.7?
I guess just because it's an API change instead of a bug fix (this one is half and half though)...any opinions out there?
Thanks.
-rp
=end
-
12:18 AM Feature #3282 (Rejected): request: ability to step through *prelude
- =begin
Currently if you are running a debugger and are unlucky enough to try to step through code from gem_prelude (and friends), you hit something like
(rdb) : n
(no source available)
(rdb) : n
(no source available)
(rdb) ... -
12:12 AM Bug #3084 (Feedback): ri shows the same description twice
- =begin
Hi,
Sorry for late response, but I cannot reproduce.
Rdoc has changed a lot since the begin of April.
Could you delete old installation and try trunk again?
Eric, if you know anything about this issue, please ... -
12:03 AM Bug #3281 (Rejected): fail to build fiddle on Debian/lenny by default
- =begin
Hi,
2010/5/12 Tanaka Akira <akr@fsij.org>:
> I can build fiddle on Debian GNU/Linux (lenny) by default. Strange.
>
> No such configure argument required for me.
Ah, my apologies! I remember that I'm using gcc...
05/12/2010
-
11:37 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:41304] Re: [BUG:1.9] BINARY should not be ASCII-compatible"
on Wed, 12 May 2010 22:30:02 +0900, Yugui <yugui@yugui.jp> writes:
|> ところで、Yugui さんが暴走した場合に止める役として、リリースマネージャ
|> 補佐をつける... -
10:30 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
Yuguiです。
2010/5/12 Yusuke ENDOH <mame@tsg.ne.jp>:
> リリースマネージャとしての自覚を持ってください。「よりよい可能性」は
> 無限にあります。それを妥協・抑制・説得してリリースブランチを安定させる
> のがリリースマネージャの仕事です。
いやはや、これについては返すべき言葉もないです。ちょっと最近血迷ってました。
> Yugui さんは rubyspec をパスするために特大の延... -
07:21 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
遠藤です。
もう reject されたようですが、せっかく書いたので送ります。
2010年5月12日8:42 Yugui <yugui@yugui.jp>:
> 2010/5/11 Urabe Shyouhei <shyouhei@ruby-lang.org>:
>> 偉い人の仕事には「どっしりと構えて些細なことでは動じない」というのもあると思っ
>> てます。
>
> 偉い人は置いておいて、私はよりよい可能性があればいくらでも... -
07:02 PM Bug #3274 (Rejected): BINARY should not be ASCII-compatible
- =begin
> でも、その解決として ASCII非互換な BINARY という話に飛びつくのは
> いかがなものでしょうか。簡単に済む話とは思えません。
そうですね。ちょっと簡単に済みそうにないというのはよく分かりました。
落としどころとして1.9.3あたりに入らないかと思ったんですが、それも難しいですね。そういうわけで、また別の方策を何か考えましょう。
=end
-
05:54 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
成瀬です。
2010年5月12日14:24 Urabe Shyouhei <shyouhei@ruby-lang.org>:
> 卜部です。
>
> (2010/05/12 8:42), Yugui wrote:
>> 2010/5/11 Urabe Shyouhei <shyouhei@ruby-lang.org>:
>>> 偉い人の仕事には「どっしりと構えて些細なことでは動じない」というのもあると思っ
>>> てます。
>>
>... -
05:50 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
成瀬です。
2010年5月11日20:44 Yugui <yugui@yugui.jp>:
> wycatsと話しまして、railsサイドでのM17N実例からの知見というものを聞き取りました。
> それによれば、誤ってBINARYなまま(バイト列のまま)低レベルレイヤーから上がってきた文字列を、
> 文字列リテラル由来の(script encodingな)文字列と結合した際の互換性エラーが問題で、
> 多数のバグ報告に遭遇しているそうです。... -
02:24 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
卜部です。
(2010/05/12 8:42), Yugui wrote:
> 2010/5/11 Urabe Shyouhei <shyouhei@ruby-lang.org>:
>> 偉い人の仕事には「どっしりと構えて些細なことでは動じない」というのもあると思っ
>> てます。
>
> 偉い人は置いておいて、私はよりよい可能性があればいくらでも軽薄に立場を変えます。
> ただ、それが本当によりよいのかについては慎重でありたく、-d... -
10:57 AM Bug #3274: BINARY should not be ASCII-compatible
- =begin
永井@知能.九工大です.
From: Yugui <yugui@yugui.jp>
Subject: [ruby-dev:41290] Re: [BUG:1.9] BINARY should not be ASCII-compatible
Date: Wed, 12 May 2010 08:42:14 +0900
Message-ID: <AANLkTilQTJM0TKVx85aCdGXnn3rvFqC2YyTKchjykB0z@mail.g... -
08:42 AM Bug #3274: BINARY should not be ASCII-compatible
- =begin
2010/5/11 Urabe Shyouhei <shyouhei@ruby-lang.org>:
> 偉い人の仕事には「どっしりと構えて些細なことでは動じない」というのもあると思っ
> てます。
偉い人は置いておいて、私はよりよい可能性があればいくらでも軽薄に立場を変えます。
ただ、それが本当によりよいのかについては慎重でありたく、-devで意見を聞きたい訳です。
> ゴールを確認しましょう。どうせM17Nの問題が魔法のように解... -
11:08 PM Bug #3281 (Rejected): fail to build fiddle on Debian/lenny by default
- =begin
Hi Aaron --
fiddle cannot be built on Debian/lenny by default, because extconf.rb
fails to find ffi.h. It can be built by specifying the path:
./configure --with-libffi-include=/usr/include/i486-linux-gnu
But ... - 10:39 PM Revision 86fa4ec8 (git): * 2010-05-13
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:39 PM Revision 5920d544 (git): * ext/sdbm/_sdbm.c: include unistd.h before sdbm.h for off_t.
- fix compilation problem on FreeBSD 6.4.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27764 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:47 PM Bug #2655: win32OLE processes lose their connection?
- =begin
To fix this issue, I think Win32OLE should be MTA model instead of STA model.
I had tried MTA instead of STA and fixed this issue, but I have another two
following issues:
(1) WIN32OLE_EVENT does not work very well.
(... -
12:27 AM Bug #2655 (Assigned): win32OLE processes lose their connection?
- =begin
Hi, Masaki Suketa
Could you take a look at this ticket?
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
09:20 PM Bug #3167: RDoc issues in interactive mode
- =begin
Hi,
2010/5/12 Benoit Daloze <eregontp@gmail.com>:
> Eric Hodel knows about these bugs, I spoke of it with him.
>
> They are compatibility problems,
> because it behaved better about these few problems before.
>
>... -
12:49 AM Bug #3167: RDoc issues in interactive mode
- =begin
Hi,
On 11 May 2010 14:52, Yusuke Endoh <redmine@ruby-lang.org> wrote:
>
>Hi, Eric Hodel
>
>Could you take a look at this ticket?
>
> Benoit Daloze,
>
> I have never used ri interactive mode, so I cannot determine whether... -
12:47 AM Bug #3167: RDoc issues in interactive mode
- =begin
Hi,
On 11 May 2010 14:52, Yusuke Endoh <redmine@ruby-lang.org> wrote:
>
>Hi, Eric Hodel
>
>Could you take a look at this ticket?
>
> Benoit Daloze,
>
> I have never used ri interactive mode, so I cannot determine whether... -
12:44 AM Bug #3167: RDoc issues in interactive mode
- =begin
Hi,
On 11 May 2010 14:52, Yusuke Endoh <redmine@ruby-lang.org> wrote:
>
>Hi, Eric Hodel
>
>Could you take a look at this ticket?
>
> Benoit Daloze,
>
> I have never used ri interactive mode, so I cannot determine whether... -
08:44 PM Bug #3022: What are $. and ARGF.lineno ?
- =begin
Hi,
2010/3/27 Marc-Andre Lafortune <redmine@ruby-lang.org>:
> This is not true in trunk, as demonstrated by:
>
> $ rubydev -e "
> ARGF.gets
> File.open('/etc/passwd'){|f| f.gets; f.gets}
> p $., A... -
04:26 PM Bug #1576 (Assigned): TestFile failures in windows
- =begin
19) - 21) is already fixed (or changed the test)
cannot reproduce 22). maybe fixed.
18) is the problem of paragraph mode of IO#gets.
if the newline code is not equals as 0x0A, paragraph mode doesn't run well.
I think t... -
02:49 PM Revision b6d3c537 (git): * include/ruby/intern.h (rb_quad_pack): deprecated.
- (rb_quad_unpack): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:16 PM Revision 48eb4a79 (git): add a test.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27762 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:15 PM Revision 54c0e4b7 (git): new test file.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:50 PM Revision dd6b923b (git): fix the comment.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:23 PM Revision a00247f5 (git): * time.c (rb_big_abs_find_minbit): use ffs().
- * configure.in: check ffs().
* missing/ffs.c: new file.
* include/ruby/missing.h (ffs): declared.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:48 AM Feature #2454 (Rejected): OpenSSL has no maintainer
- =begin
This ticket is timeouted.
=end
-
09:24 AM Bug #2632: Windows での未読のあるソケットのクローズ後の読み取り
- =begin
このパッチについては特に反対しないので、望むなら入れてもらってかまいません。
=end
-
07:43 AM Revision 01eb640c (git): * numeric.c (flo_to_s): fixed broken output including nuls.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:43 AM Revision d80a859d (git): * numeric.c (flo_to_s): fixed broken output including nuls.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:35 AM Feature #3176: Thread#priority= should actually do something
- =begin
Aaaag, I uploaded an empty patch. Sorry. Here's the real one.
=end
-
07:21 AM Feature #3176: Thread#priority= should actually do something
- =begin
Here's a patch which makes thread priorities work. This was made against the current trunk (1.9.3dev as of 11-may-2010).
Please consider this a preview to show where I want to go with this rather than a final product. Before... -
07:34 AM Revision c32c4364 (git): merge frrom trunk (r27729)
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:25 AM Revision d2a68945 (git): * numeric.c (flo_to_s): exponent needs 2 digits.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:25 AM Revision dbb8970a (git): * numeric.c (flo_to_s): exponent needs 2 digits.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:14 AM Revision 6f6b955e (git): * common.mk (rdoc): rdoc should depend main. Moreover when XRUBY
- is miniruby, it can run after miniruby is built.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:13 AM Revision c8de7d50 (git): * enc/utf_8.c: Add new alias UTF-8-HFS for UTF8-MAC.
- http://www.gnu.org/software/emacs/NEWS.23.2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:12 AM Revision fcb52106 (git): * re.c (rb_reg_initialize_m): fix wrong index for the lang
- option's value 'N'. reported by Masaya TARUI via IRC.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27753 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:11 AM Revision 25c7c4a4 (git): * re.c (rb_reg_initialize_m): fix wrong index for the lang
- option's value 'N'. reported by Masaya TARUI via IRC.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27752 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:02 AM Revision 16ea63ad (git): * numeric.c (flo_to_s): fill lower zeros.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:02 AM Revision 1e6308e2 (git): * numeric.c (flo_to_s): fill lower zeros.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:51 AM Revision abf45abe (git): merge from trunk (r27749)
- * lib/rdoc/generator/ri.rb (generate): should load existing cache
before generating it.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 06:46 AM Revision db96db42 (git): * lib/rdoc/generator/ri.rb (generate): should load existing cache
- before generating it.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27749 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:37 AM Revision 1f24a436 (git): * numeric.c (flo_to_s): make minimum string representation.
- [ruby-core:30145]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:04 AM Revision 5b20a139 (git): * ext/bigdecimal/lib/bigdecimal/math.rb (BigMath#log): improved
- precision and performance. [ruby-dev:41295]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:04 AM Revision 27da0b89 (git): * ext/bigdecimal/lib/bigdecimal/math.rb (BigMath#log): improved
- precision and performance. [ruby-dev:41295]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 02:40 AM Revision 851a0238 (git): * ext/socket/extconf.rb: test all IPPROTO_* constants for recent Win32
- SDK.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:57 AM Revision 07b314f0 (git): * numeric.c (flo_to_s): make minimum string representation.
- [ruby-core:30145]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 01:06 AM Revision 7abe8a55 (git): * 2010-05-12
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:06 AM Revision 0e586b35 (git): * re.c (rb_reg_initialize_m): fix wrong index for the lang
- option's value 'N'. reported by Masaya TARUI via IRC.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:46 AM Bug #3277 (Closed): win32ole cannot print?
- =begin
require 'win32ole'
wmi = WIN32OLE.connect("winmgmts://")
processes = wmi.ExecQuery("select * from win32_process")
processes.each{|p| puts p}
on 1.9.1 works
on ruby 1.9.3dev (2010-05-11 trunk 27724) [i386-mingw32]
... -
12:22 AM Bug #1967 (Rejected): Segmentation fault at test_qsort1 and test_qsort2 in test/dl/test_func.rb running on sparc-solaris-2.10
- =begin
遠藤です。
それでは、WONTFIX ということで閉じます。
64 ビット Solaris でテストをする場合は fiddle を使用してください。
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
05/11/2010
-
11:17 PM Bug #1804 (Closed): ext/socket/mkconstants.rb doesn't recognize enum'ed constants
- =begin
This issue was solved with changeset r27742.
Usaku, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
10:46 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
普段、あまりM17Nの件に反応しない卜部ですが、
(2010/05/11 20:44), Yugui wrote:
> wycatsと話しまして、railsサイドでのM17N実例からの知見というものを聞き取りました。
> それによれば、誤ってBINARYなまま(バイト列のまま)低レベルレイヤーから上がってきた文字列を、文字列リテラル由来の(script
> encodingな)文字列と結合した際の互換性エラーが問題で、多数のバグ報告に遭遇して... -
09:22 PM Bug #3274: BINARY should not be ASCII-compatible
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:41278] [BUG:1.9] BINARY should not be ASCII-compatible"
on Tue, 11 May 2010 20:44:41 +0900, Yugui <yugui@yugui.jp> writes:
|1.9.1リリースから時間を経て、1.9.2リリースも準備段階に入り、この段階に及んで大きな仕様変更とも取れるの... -
08:45 PM Bug #3274 (Rejected): BINARY should not be ASCII-compatible
- =begin
Yuguiです。
> で、おおむねここまでの議論でカバーできていると思うんですが、
> Rails びと的には問題を切り分けできていないように思うので、
> 彼らにはまずデータベースのドライバが適切なものになっているかの確認を
> 徹底させるのがよいかと思います。
> というか、Rails 3 側でドライバのバージョン見た方がいいんじゃないかな。
>
> とりあえずこれでかなり地雷が減ると思うので、データベース周り... -
10:25 PM Bug #1142 (Rejected): /opt/ruby19/lib/ruby19/1.9.1/openssl/ssl.rb:31: [BUG] Bus Error
- =begin
=end
-
10:17 PM Bug #3275 (Closed): incompatibility of testrb
- =begin
Hi, Ryan Davis
Incompatibility of testrb is reported in [Bug #3037].
Are you willing to fix these? Or, should we consider this is a spec
change?
- 1.8.7's testrb accepts --help to output detailed help of available
... -
10:12 PM Bug #2695 (Closed): Supported Platforms
- =begin
遠藤です。
support plan は [ruby-dev:41101] で方針が決定されました。
このチケットは複数の議論がまざってしまっていて目的が明確でないので、
このチケット自体は close します。
今後もなにか議論するべきことがあれば、このチケットの参照とともに
新しいチケットを登録しましょう。
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
10:07 PM Bug #3224 (Closed): Regexp.new("...", nil, "n") is not documented
- =begin
This issue was solved with changeset r27738.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
09:57 PM Bug #3245 (Closed): Expected "ccache gcc" to be nil.
- =begin
This issue was solved with changeset r27737.
Kazuhiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
09:52 PM Bug #3167: RDoc issues in interactive mode
- =begin
Hi, Eric Hodel
Could you take a look at this ticket?
Benoit Daloze,
I have never used ri interactive mode, so I cannot determine whether
each issue you said is compatibility problem or new feature request.
... -
09:16 PM Bug #3210 (Rejected): Problem compiling ruby 1.9.1-p376
- =begin
Hi, pierre
You have not answered yet, but I assume you are using openssl 1.0.0
or its beta.
Ruby 1.9.1-p376 is tested with openssl 0.9.8. Perhaps it is compilable
with openssl 0.9.x, but openssl 1.0.0 is not compat... -
08:43 PM Bug #3244 (Closed): the behavior of Tempfile#size was changed
- =begin
遠藤です。
成瀬さんが rubyspec 側を直してくれた (df06cb5c1dcc73c7bf0746e6c287a8aad45c1145)
ので close します。
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
08:07 PM Bug #3177 (Closed): TestFileUtils#test_cp_r_symlink
- =begin
遠藤です。
成瀬さんが r27550 で直してくれましたので close します。
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
08:01 PM Bug #2667 (Rejected): Segmentation fault error
- =begin
Hi,
I found a mail in ruby-talk (Thanks, Douglas Seifert!):
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/358971
> On some redhat based distros, if you compile ruby 1.9.1 from source and
> install i... -
02:17 PM Bug #3267 (Closed): BigDecimal/mathでatan()に1.08を入れると戻り値の有効桁数が足りない
- =begin
This issue was solved with changeset r27734.
_, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
11:50 AM Bug #3267: BigDecimal/mathでatan()に1.08を入れると戻り値の有効桁数が足りない
- =begin
むらたです。
On 2010/05/11, at 7:06, _ wanabe wrote:
> RubyのトランクのBigDecimal/math
> atan()に1.08を入れると戻り値の有効桁数が足りない
>
> return pi.div(neg ? -2 : 2, prec) if x.infinite?
> return pi / (neg ? -4 : 4) if x.round(prec) == 1
> * x ... -
07:05 AM Bug #3267 (Closed): BigDecimal/mathでatan()に1.08を入れると戻り値の有効桁数が足りない
- =begin
2ch.net 上で報告があったので転載します。
Rubyについて Part 40
http://pc12.2ch.net/test/read.cgi/tech/1272248179/121-122
RubyのトランクのBigDecimal/math
atan()に1.08を入れると戻り値の有効桁数が足りない
return pi.div(neg ? -2 : 2, prec) if x.infinite?
ret... -
02:10 PM Revision 01cd3467 (git): * ext/socket/extconf.rb: test IPPROTO_IP and IPPROTO_IPV6 constants.
- * ext/socket/mkconstants.rb: define macros for enum.
[ruby-dev:38849]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27742 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:03 PM Revision 709bff4f (git): update doc.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:57 PM Revision 1fb6c3a7 (git): update doc.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:57 PM Bug #3225 (Closed): lib/uri/mailto.rb slightly wrong regexp
- =begin
This issue was solved with changeset r27731.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
01:56 PM Revision 53572f57 (git): * pack.c (pack_pack): call rb_quad_pack to preserve RangeError.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:40 PM Bug #1967: Segmentation fault at test_qsort1 and test_qsort2 in test/dl/test_func.rb running on sparc-solaris-2.10
- =begin
2010/4/27 Yusuke Endoh <redmine@ruby-lang.org>:
> チケット #1967 が更新されました。 (by Yusuke Endoh)
>
> 担当者 Aaron Pattersonにセット
>
> アーロン宛です。
> 遠藤です。
>
> dl に関するこのチケットをどう思いますか?
> ffi に同じような問題はないですか?
ffiは x86_64 をsupportしているので、ffi... -
12:17 AM Bug #1967: Segmentation fault at test_qsort1 and test_qsort2 in test/dl/test_func.rb running on sparc-solaris-2.10
- =begin
Hi, Aaron
Could you take a look at this ticket?
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
01:06 PM Revision f65aac7a (git): Add description about Regexp(str, opt, lang). [ruby-core:29893]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27738 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:54 PM Revision cbeafa71 (git): * test/rake/test_task_arguments.rb: makes ENV empty during tests
- because ENV may change the behavior of Rake::TaskArguments.
[ruby-core:29984]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27737 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
11:57 AM Bug #1320 (Closed): sdbm.c compiler warnings
- =begin
This issue was solved with changeset r27730.
Charlie, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
11:50 AM Bug #1320 (Open): sdbm.c compiler warnings
- =begin
It needs -W3 option to reproduce.
=end
-
10:33 AM Bug #1320 (Closed): sdbm.c compiler warnings
- =begin
can't reproduce with VC9 and r27729.
maybe already fixed.
=end
-
11:57 AM Bug #3270: BigMath.exp が絶対値が大きな引数で遅い
- =begin
=end
-
11:56 AM Bug #3270 (Assigned): BigMath.exp が絶対値が大きな引数で遅い
- =begin
=end
-
11:51 AM Bug #3270 (Closed): BigMath.exp が絶対値が大きな引数で遅い
- =begin
Rubyについて Part 40
http://pc12.2ch.net/test/read.cgi/tech/1272248179/121-122
> あと、expの絶対値が大きくなると、戻って来ないのよね。
> exp(a*b+c) = exp(a)**b * exp(c)
> を使うと、幸せになれるかも。(ん十倍の威力で)
=end
-
11:55 AM Feature #3269 (Assigned): BigMath.tan がない
- =begin
=end
-
11:50 AM Feature #3269 (Closed): BigMath.tan がない
- =begin
Rubyについて Part 40
http://pc12.2ch.net/test/read.cgi/tech/1272248179/121-122
> あ、トランクにはtanはないのだけど、sinとcosの組み合わせで間に合わせました。
> tanはパッと見、収束が遅いようなので後回し。
=end
-
11:55 AM Bug #3271 (Assigned): BigMath.power が遅い
- =begin
=end
-
11:53 AM Bug #3271 (Closed): BigMath.power が遅い
- =begin
Rubyについて Part 40
http://pc12.2ch.net/test/read.cgi/tech/1272248179/121-122
> んで、powerも全部の桁を計算してご苦労さんなんだが、integerではないのだから、そんなに気張らなくても..
> とは、思います。
> expと同じ要領でやると、実行速度がずいぶん速くなります。
> (Rubyのコードからpowerをcallするんだが、それでもとても速い。
... -
11:54 AM Bug #3272 (Closed): BigDecimal#** が実用的な速度ではない
- =begin
logは、exponentが負の場合、
を書いてあるから、正で2桁以上の場合、を追加すると良いですね。
expとlogが実用範囲内になると、実数**実数が(実用的に)使えるようになります。
=end
-
08:30 AM Bug #3140: gem activation has changed between 1.8 and 1.9
- =begin
On May 10, 2010, at 12:01, Evan Phoenix wrote:
> Can we please get this committed for 1.9.2?
For what it's worth, I think Nobu has a better idea of whether this patch is acceptable or not than I do.
gem_prelude.rb is abo... -
06:15 AM Revision 90be9700 (git): * enc/utf_8.c: Add new alias UTF-8-HFS for UTF8-MAC.
- http://www.gnu.org/software/emacs/NEWS.23.2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 05:28 AM Revision cab5124b (git): merge from trunk (r27734)
- * ext/bigdecimal/lib/bigdecimal/math.rb (atan), test/bigdecimal/test_bigmath.rb (test_atan): explicitly specify the precision for calculating a reciprocal number of an argument. [Bug #3267]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/br... - 05:11 AM Revision 74365313 (git): * ext/bigdecimal/lib/bigdecimal/math.rb (atan), test/bigdecimal/test_bigmath.rb (test_atan): explicitly specify the precision for calculating a reciprocal number of an argument. [Bug #3267]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 05:10 AM Revision cedb75e6 (git): merge from trunk (r27719)
- * time.c (rb_big_abs_find_minbit): get rid of a warning of VC.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 05:09 AM Revision 52583c34 (git): merge from trunk (r27718)
- * win32/win32.c, include/ruby/win32.h (rb_w32_has_cancel_io): new
function.
* io.c (WAIT_FD_IN_WIN32): check only when it's not cancelable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27732 b2dd03c8-39d4-4d8f-98f... - 04:49 AM Revision 3b0e399c (git): * lib/uri/mailto.rb: clean up regexp [ruby-core:29894]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:55 AM Bug #2629 (Rejected): ConditionVariable#wait(mutex, timeout) should return whether the condition was signalled, not the waited time
- =begin
Hi, Hongli
Even if there is no return value, you can detect the timeout
*without guessing* by the following:
mutex.synchronize do
t = Time.now + x
until @quit
t2 = Time.now
cv.wait(mutex,... -
03:08 AM Bug #1085: Got the error message, after run 'gem install --test'.
- =begin
On Mon, May 10, 2010 at 11:40 AM, Yusuke Endoh <redmine@ruby-lang.org> wrote:
> Issue #1085 has been updated by Yusuke Endoh.
>
>
> Hi, Eric
>
> Any update here?
>
AFAIk --test option has and will be deprecated in newer... -
02:49 AM Revision 5b2c631d (git): * ext/sdbm/sdbm.h (DBM): large file support on win32.
- [ruby-core:23039]
* ext/sdbm/depend: objects depend on sdbm.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:49 AM Revision 2b0fe807 (git): * ext/sdbm/sdbm.h (DBM): large file support on win32.
- [ruby-core:23039]
* ext/sdbm/depend: objects depend on sdbm.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:18 AM Feature #2152: Split functionality of Float#inspect and Float#to_s
- =begin
On 10 May 2010 18:59, Roger Pack <rogerdpack2@gmail.com> wrote:
> I recently discovered Float#round the other day, if that's of any use.
>
>> 1.1-0.9
> => 0.20000000000000007
>>> (1.1-0.9).round(2)
> => 0.2
>
Sure, I did ... -
01:46 AM Bug #1558 (Assigned): test timeout issues in windows
- =begin
=end
-
01:22 AM Bug #1558: test timeout issues in windows
- =begin
the first two seem to not reproduce. The last is now:
C:\dev\ruby\downloads>\installs\ruby_trunk_no_patches_installed\bin\ruby ruby_trunk_no_patches\test\drb\test_drb.rb
Loaded suite ruby_trunk_no_patches/test/dr... -
12:01 AM Bug #1558: test timeout issues in windows
- =begin
Hi, Roger
Could you answer to unak?
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
12:57 AM Revision fbe5ce6c (git): * eval_intern.h (rb_vm_get_sourceline): add prototype.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:53 AM Revision c20a118c (git): * ext/psych/parser.c (PSYCH_TRANSCODE): get rid of bare use of gcc
- extension.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:53 AM Revision 60d460ea (git): * ext/psych/parser.c: fixed broken indent.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:27 AM Bug #2402: super in instance_eval
- パッチは全然見てないのですが,遠藤さんが良いと仰ってるので良いのではないかと思います.
-
12:26 AM Bug #2489: Segmentation Fault Ruby 1.9.1 p376, AIX 5.3
- =begin
=end
-
12:18 AM Bug #2176: [rubygems] $LOAD_PATH includes bin directory
- =begin
Hi, Eric
Please answer to nobu and Luis.
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
12:04 AM Feature #1800: rubygems can replace system executable files
- =begin
Hi, Eric
What do you think about this issue?
Are you planning to fix this before 1.9.2 release?
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
05/10/2010
-
11:40 PM Bug #1085: Got the error message, after run 'gem install --test'.
- =begin
Hi, Eric
Any update here?
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
11:38 PM Feature #1031: -U オプションの説明が --help にない
- =begin
=end
- 08:53 PM Revision bd7714b1 (git): * 2010-05-11
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:53 PM Revision c5d88249 (git): * pack.c: backport integer pack/unpack from 1.9 for [ruby-core:21937].
- * configure.in: backport RUBY_DEFINT and fixed size integer checks.
* ruby.h: include stdint.h if available.
* bignum.c (rb_big_pack): defined..
(rb_big_unpack): defined.
* intern.h (rb_big_pack): declared.
(rb_big_unpack): declar... - 04:22 PM Revision 6f403dbf (git): * 2010-05-11
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:22 PM Revision 0de068d0 (git): * ext/psych/parser.c (parse): Return strings encoded as
- Encoding.default_internal if set.
* test/psych/test_encoding.rb: Tests for encoding change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:54 PM Revision 7e56b2d2 (git): backport pack and unpack tests from Ruby 1.9.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:52 PM Revision 3c408649 (git): * pack.c (pack_unpack): add a missing break.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:52 PM Revision 9d3b304b (git): * pack.c (pack_unpack): add a missing break.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:17 PM Bug #3231: Digest Does Not Build
- =begin
1. Open VC command prompt.
2. set INCLUDE=c:\Development\msys\local\include;%INCLUDE%
3. set LIB=c:\Development\msys\local\lib;%LIB%
4. cd c:\Development\src\ruby
5. nmake
(Note I have previously run win32/configure.... -
06:48 AM Revision 8489a019 (git): * regex.c (read_special): get rid of overrun.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 05:13 AM Revision c76b8fca (git): * time.c (rb_big_abs_find_minbit): get rid of a warning of VC.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 05:02 AM Revision fe0d339c (git): * win32/win32.c, include/ruby/win32.h (rb_w32_has_cancel_io): new
- function.
* io.c (WAIT_FD_IN_WIN32): check only when it's not cancelable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:47 AM Bug #2782 (Closed): Binding#eval not completely indicative of its binding
- This issue was solved with changeset r27716.
Yuki, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
-
03:47 AM Bug #1769 (Closed): eval with binding, without location
- =begin
This issue was solved with changeset r27716.
Yuki, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
03:27 AM Bug #3141 (Closed): yield in an eigenclass definition
- =begin
This issue was solved with changeset r27714.
Yusuke, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
03:27 AM Bug #1018 (Closed): return in an eigenclass definition
- =begin
This issue was solved with changeset r27714.
Shugo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
02:37 AM Bug #3050 (Closed): Fiber transfer limitation
- =begin
This issue was solved with changeset r27713.
Koichi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
05/09/2010
-
11:57 PM Bug #3254 (Closed): [BUG] Segmentation fault
- =begin
This issue was solved with changeset r27703.
Diogo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
11:57 PM Bug #3250 (Closed): [BUG] Segmentation fault
- =begin
This issue was solved with changeset r27703.
Diogo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
10:02 PM Revision 15381196 (git): * common.mk (rdoc): rdoc should depend main. Moreover when XRUBY
- is miniruby, it can run after miniruby is built.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:39 PM Bug #3255: Trunk fail to build without explicit ./configure options (yaml.h not found)
- =begin
Hi,
On 8 May 2010 19:51, Aaron Patterson <aaron@tenderlovemaking.com> wrote:
>
> You're getting that result because ext/psych/extconf.rb doesn't know
> where to find your installation of libyaml. You need to provide
> confi... -
12:26 AM Bug #3255: Trunk fail to build without explicit ./configure options (yaml.h not found)
- =begin
Hi,
I tried again today, and it works without configuration,
but I need to
make # fail with 'libyaml missing'
make clean
make # OK
Do anyone have an idea why I get these results?
Regards,
B.D.
PS: Probably th... -
07:03 PM Bug #2488: thread usage can result in bad HANDLE
- =begin
Hello,
2010/5/6, Caleb Clausen <vikkous@gmail.com>:
> I don't understand win32 programming that well...
Me too.
> Why is it necessary to re-check that intr is set to what it was set to
> just two lines before? I assume... -
06:41 PM Revision b8571b42 (git): * vm_eval.c (eval_string_with_cref): propagative filename and line_no
- of binding. [ruby-dev:38767] [ruby-core:28307]
* vm_core.h (rb_binding_t), proc.c: add filename and line_no fields to
preserve them.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:23 PM Revision d49052b5 (git): * test/ruby/test_fiber.rb: add ML ref.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
06:21 PM Revision 80f7f8d0 (git): * compile.c (iseq_compile_each), vm_insnhelper.c (vm_invoke_block,
- vm_throw): allow "return" and "yield" even in singleton class
definition. based on a patch from wanabe <s.wanabe AT gmail.com>
for "return". [ruby-core:21379] [ruby-dev:40975]
* insns.def (defineclass): ditto (straightforwardly pu... -
05:32 PM Revision b664caeb (git): * cont.c (fiber_switch): raise FiberError when returning to dead
- fiber. [ruby-dev:40833]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
05:26 PM Revision e2ab44ac (git): * test/rubygems/mockgemui.rb (MockGemUi::TTY),
- test/rubygems/test_gem_stream_ui.rb (TestGemStreamUI::IsTty):
need #noecho.
* test/rubygems/test_gem_gemcutter_utilities.rb: need
rubygems/command.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27712 b2dd03c8-39d4-4d8f-98ff-82... -
05:10 PM Revision f4053cf5 (git): * lib/thread.rb (ConditionVariable#wait): ensure to remove the current
- thread from waiters. [ruby-core:29835]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:37 PM Bug #3262 (Closed): can't create fiber & SEGV in windows
- =begin
This issue was solved with changeset r27701.
masaya, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
06:48 AM Bug #3262 (Closed): can't create fiber & SEGV in windows
- =begin
windowsにおいて fiber が作れなくなってSEGVする事があります。
[BUG] Segmentation fault
ruby 1.9.2dev (2010-05-09 trunk 27684) [i386-mswin32_90]
-- control frame ----------
c:0001 p:---- s:0001 b:-001 l:000000 d:000000 ------
----------... -
04:32 PM Revision cb61fcb9 (git): update doc.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 04:00 PM Revision 46e78b4a (git): * 2010-05-10
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:00 PM Revision 64dee006 (git): * test/bigdecimal/test_bigdecimal.rb (TestBigDecimal#test_gc):
- reduced heavy test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:00 PM Revision dca029dd (git): * test/bigdecimal/test_bigdecimal.rb (TestBigDecimal#test_gc):
- reduced heavy test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:56 PM Revision 41874ab6 (git): * NEWS (io/console): added IO#echo?.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:54 PM Revision b44618d5 (git): * ext/io/console/console.c (console_set_raw): new method.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27706 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:50 PM Bug #3231: Digest Does Not Build
- =begin
Hi,
At Sun, 9 May 2010 08:12:27 +0900,
Charlie Savage wrote in [ruby-core:30108]:
> OpenSSL (v1.0) is installed to c:\Development\msys\local\bin
> and c:\Development\msys\local\include.
How were those directory names giv... -
08:12 AM Bug #3231: Digest Does Not Build
- =begin
Sure, attached.
OpenSSL (v1.0) is installed to c:\Development\msys\local\bin and c:\Development\msys\local\include.
This is where I have other 3rd party libraries installed (iconv, zlib, libxml, etc.) and those extensio... -
03:35 PM Revision 08bf7189 (git): * ext/io/console/console.c (ttymode): reverted previous commit.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27705 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:53 PM Revision c3b67013 (git): * include/ruby/ruby.h (RB_GC_GUARD_PTR): get rid of removal by
- optimization.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:53 PM Revision 24e1be74 (git): * include/ruby/ruby.h (RB_GC_GUARD_PTR): get rid of removal by
- optimization.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:51 PM Revision 1bcd74de (git): * proc.c (proc_dup): copy blockprocval. proc_dup is used by
- define_method, which made blockprocval be GC'ed mistakenly.
[ruby-core:30023]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27703 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:38 PM Revision 5bd7289a (git): * test/bigdecimal/test_bigdecimal.rb (TestBigDecimal#test_gc):
- fixed test subject.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:38 PM Revision c4546f19 (git): * test/bigdecimal/test_bigdecimal.rb (TestBigDecimal#test_gc):
- fixed test subject.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:57 AM Bug #3260 (Closed): Can't build Ruby with SunStudio on sparc Solaris
- =begin
This issue was solved with changeset r27694.
Yuki, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
08:39 AM Bug #2554 (Rejected): Net::FTP should not use MSG_OOB
- =begin
ftplib.py says:
def abort(self):
'''Abort a file transfer. Uses out-of-band data.
This does not follow the procedure from the RFC to send Telnet
IP and Synch; that doesn't seem to work with... -
08:27 AM Bug #21 (Closed): should terminate @receiver_thread of Net::IMAP safely
- =begin
This issue was solved with changeset r27690.
Shugo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
07:28 AM Revision d17f0a84 (git): * cont.c (fiber_initialize_machine_stack_context): try to release
- unnecessary fibers and retry to create. based on a patch from
masaya tarui at [ruby-dev:41230].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:28 AM Revision d4fb3227 (git): * cont.c (fiber_initialize_machine_stack_context): try to release
- unnecessary fibers and retry to create. based on a patch from
masaya tarui at [ruby-dev:41230].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:10 AM Revision af712edd (git): merges r27695 from trunk into ruby_1_9_2.
- --
* test/dl/test_callback.rb: fixing valgrind errors. Ruby string may be
GC'd before the callback returns.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:10 AM Revision b86cfcde (git): merges r27694 from trunk into ruby_1_9_2.
- --
* ext/json/generator/generator.c (fbuffer_inc_capa):
fix tha use of REALLOC_N. [ruby-dev:41227]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:10 AM Revision a190fa4f (git): merges r27691 from trunk into ruby_1_9_2.
- --
* test/net/imap/test_imap.rb: use IPv4 for
test_imaps_post_connection_check. [ruby-dev:41189]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:10 AM Revision 3328b4c9 (git): no longer on the trunk but on ruby_1_9_2.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:10 AM Revision b610cec7 (git): merges r27685 from trunk into ruby_1_9_2.
- --
* ext/fiddle/lib/fiddle.rb: only require DL if it hasn't been required
yet. [ruby-core:30095]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:57 AM Revision 1b979ea7 (git): * test/dl/test_callback.rb: fixing valgrind errors. Ruby string may be
- GC'd before the callback returns.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:50 AM Revision 7021db80 (git): * ext/json/generator/generator.c (fbuffer_inc_capa):
- fix tha use of REALLOC_N. [ruby-dev:41227]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:36 AM Revision c8892037 (git): revert previous doc. change.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27693 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:30 AM Revision edc18de9 (git): * ext/json/{generator/generator.c,parser/parser.rl}: fixed indent.
- * ext/json/{generator,parser}/depend: added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:30 AM Revision 5d379991 (git): * ext/json/{generator/generator.c,parser/parser.rl}: fixed indent.
- * ext/json/{generator,parser}/depend: added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:16 AM Revision d2a9f00e (git): * test/net/imap/test_imap.rb: use IPv4 for
- test_imaps_post_connection_check. [ruby-dev:41189]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
05/08/2010
-
11:25 PM Revision e240f93f (git): * lib/net/imap.rb (disconnect): terminates @receiver_thread even if
- @sock.shutdown raises an exception. [ruby-dev:34881]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
11:14 PM Bug #3260 (Closed): Can't build Ruby with SunStudio on sparc Solaris
- =begin
trunkをsparc solaris上でSunのccでコンパイルした場合、次のエラーが出てext/jsonをビルドできませんでした。
ccache cc -I. -I../../../.ext/include/sparc-solaris2.10 -I../../../../../mri/include -I../../../../../mri/ext/json/generator -DRUBY_EXTCONF_H=¥"extconf.h¥" ... - 11:09 PM Revision d7f71038 (git): * 2010-05-09
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
11:09 PM Revision f78d45b3 (git): * lib/net/imap.rb: backported exception handling from trunk.
- [ruby-core:29745]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:13 PM Revision 81f4dba3 (git): * io.c (nogvl_copy_stream_sendfile): ISO C90 forbids mixed declarations and code.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:50 PM Revision 15a70cf4 (git): * include/ruby/ruby.h (rb_intern): fix compile error.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:59 PM Revision 1684c234 (git): * ext/fiddle/lib/fiddle.rb: only require DL if it hasn't been required
- yet. [ruby-core:30095]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
05:41 PM Revision 93121d99 (git): * io.c (nogvl_copy_stream_sendfile): mixed decls not allowed.
- * include/ruby/ruby.h (rb_intern): C90 needs nonempty macro
arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27684 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:22 PM Revision 69a00845 (git): * vm_insnhelper.c (vm_call_bmethod): removed unused variable.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:22 PM Revision d42a2493 (git): * vm_insnhelper.c (vm_call_bmethod): removed unused variable.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:15 PM Revision 89cc2aef (git): * cont.c (stackgrowdirection): removed duplicated code, use
- STACK_UPPER macro instead.
* gc.h (STACK_DIR_UPPER): moved from thread_pthread.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:15 PM Revision 2953f078 (git): * cont.c (stackgrowdirection): removed duplicated code, use
- STACK_UPPER macro instead.
* gc.h (STACK_DIR_UPPER): moved from thread_pthread.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:05 PM Revision ffde073b (git): * test/dl/test_base.rb (libc_so, libm_so): supports solaris.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:04 PM Revision 8f3e3995 (git): * spec/default.mspec (config): . is no longer in $:.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:00 PM Revision 0636a4be (git): * test/dl/test_base.rb (libc_so, libm_so): supports solaris.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27679 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:27 PM Revision 6aa05eba (git): * thread.c (rb_thread_aset): fixed argument type.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:27 PM Revision 349b0472 (git): * thread.c (rb_thread_aset): fixed argument type.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:09 PM Revision 9f7feadf (git): * NEWS (io/console): IO#noecho and IO#raw without block are
- obsolete already. [ruby-dev:41226]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:07 PM Revision 6f383042 (git): * ext/io/console/console.c (ttymode): save dupped file descriptors
- and restore tty modes using them, so that original modes can be
restored even if orignal fds are closed. [ruby-dev:41225]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27676 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:57 PM Bug #2829 (Closed): Missing documentation for Exception subclasses.
- =begin
This issue was solved with changeset r27670.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
01:07 PM Feature #3073 (Closed): io/console
- =begin
This issue was solved with changeset r27668.
Nobuyoshi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
11:17 AM Bug #3258 (Closed): Segmentation fault in Bigdecimal.new
- =begin
This issue was solved with changeset r27665.
masaya, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
09:24 AM Bug #3258 (Closed): Segmentation fault in Bigdecimal.new
- =begin
GC.stress = true
require 'bigdecimal'
1000.times{|i| puts BigDecimal.new("1" + "0"*i) }
を実行すると、
ruby 1.9.2dev (2010-05-07 trunk 27658) [i386-mswin32_90]
0.1E1
0.1E2
0.1E3
0.1E4
0.1E5
0.1E6
0.1E7
0.1E8
... -
10:17 AM Bug #3259 (Closed): test_socket.rb has 1 Error on Mac OS X 10.6
- =begin
This issue was solved with changeset r27663.
Tomoyuki, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
09:47 AM Bug #3259 (Closed): test_socket.rb has 1 Error on Mac OS X 10.6
- =begin
Mac OS X 10.6 (SnowLeopard)上で trunk(r27662) の make test-all すると test_socket.rb が 1 Error になります。
2) Error:
test_tcp(TestSocket):
Errno::EINVAL: Invalid argument - connect(2)
/Users/nagachika/opt/ruby-trunk/src/rub... -
10:05 AM Revision db1d9196 (git): * spec/default.mspec (config): . is no longer in $:.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:08 AM Revision f491696f (git): update doc.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 04:58 AM Revision fecc53f0 (git): * error.c: RDoc for subclasses of Exception. [ruby-core:28394]
- * cont.c: ditto
* enumerator.c: ditto
* io.c: ditto
* math.c: ditto
* numeric.c: ditto
* proc.c: ditto
* re.c: ditto
* thread.c: ditto
* transcode.c: ditto. Thanks to Run Paint for some of the documentation.
git-svn-id: svn+ssh:... - 04:58 AM Revision e9650c0b (git): * array.c (rb_ary_fetch, rb_ary_splice, rb_ary_store): Improve IndexError
- messages [ruby-core:28394]
* hash.c (rb_hash_fetch_m): Improve KeyError message
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 04:50 AM Revision 1dee5e34 (git): * error.c: RDoc for subclasses of Exception. [ruby-core:28394]
- * cont.c: ditto
* enumerator.c: ditto
* io.c: ditto
* math.c: ditto
* numeric.c: ditto
* proc.c: ditto
* re.c: ditto
* thread.c: ditto
* transcode.c: ditto. Thanks to Run Paint for some of the documentation.
git-svn-id: svn+ssh:... - 04:49 AM Revision b140b779 (git): * array.c (rb_ary_fetch, rb_ary_splice, rb_ary_store): Improve IndexError
- messages [ruby-core:28394]
* hash.c (rb_hash_fetch_m): Improve KeyError message
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:11 AM Revision adf6297e (git): * lib/rubygems/user_interaction.rb (Gem::StreamUI#ask_for_password):
- use io/console.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27669 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:05 AM Revision 163f9742 (git): * ext/io/console: imported. [ruby-dev:40897]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:37 AM Bug #3231: Digest Does Not Build
- =begin
Could you show an mkmf.log?
And from where have you installed OpenSSL?
=end
-
03:25 AM Revision 2c01a07b (git): * ext/etc/etc.c (etc_systmpdir): moved from ext/tmpdir.
- * ext/etc/etc.c (etc_sysconfdir): added.
* lib/rubygems/config_file.rb, lib/tmpdir.rb: use etc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:08 AM Revision 4832574b (git): * ext/etc/etc.c: suppressed warnings.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:08 AM Revision 5512c9b2 (git): * ext/etc/etc.c: suppressed warnings.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:07 AM Revision cccc8cbd (git): * ext/bigdecimal/bigdecimal.c (VpAlloc): ensure buf does not get
- collected. based on a patch masaya tarui at [ruby-dev:41213].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:07 AM Revision 2776b6fd (git): * ext/bigdecimal/bigdecimal.c (VpAlloc): ensure buf does not get
- collected. based on a patch masaya tarui at [ruby-dev:41213].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:07 AM Revision 66abf4ad (git): * ext/bigdecimal/bigdecimal.c (VpAlloc): ensure buf does not get
- collected. based on a patch masaya tarui at [ruby-dev:41213].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:19 AM Bug #1341: pthread_cond_timedwait failing in 1.9.1-p0 thread tests on HP-UX 11i v2
- =begin
Hi Yusuke,
That code looks better although I'm still getting test/ruby/test_thread.rb blocking indefinitely. I will see if I can attach to the process with a debugger and figure out what it's blocked on.
Thanks,
Gra.... - 01:13 AM Revision d0f8715f (git): * 2010-05-08
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:13 AM Revision 7eb6e562 (git): * ext/socket/lib/socket.rb (BasicSocket#connect_address): MacOS X 10.6
- returns "::ffff:a.b.c.d" for IPv4-mapped IPv6 address.
[ruby-dev:41215] patch by Tomoyuki Chikanaga.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27663 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:13 AM Revision 5f5db6db (git): * ext/socket/lib/socket.rb (BasicSocket#connect_address): MacOS X 10.6
- returns "::ffff:a.b.c.d" for IPv4-mapped IPv6 address.
[ruby-dev:41215] patch by Tomoyuki Chikanaga.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27663 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
05/07/2010
-
11:26 PM Bug #3250: [BUG] Segmentation fault
- =begin
Hello again Yusuke,
Your patch makes my tests pass. Your test also passes.
Nice work!
Best regards,
DBA
=end
-
10:18 PM Bug #3250: [BUG] Segmentation fault
- =begin
A smaller test case (for the record):
class C
def self.set(name)
define_method(name) { yield }
end
set(:foo) { p :boo }
end
GC.stress = true
C.new.foo
--
Yusuke Endoh <mame@tsg... -
10:09 PM Bug #3250 (Feedback): [BUG] Segmentation fault
- =begin
Hi,
The issue is fixed on my environment by the following patch.
Could you try it?
diff --git a/proc.c b/proc.c
index 9539f71..332c149 100644
--- a/proc.c
+++ b/proc.c
@@ -105,6 +105,7 @@ proc_dup(VALUE sel... -
06:23 PM Bug #3250 (Assigned): [BUG] Segmentation fault
- =begin
Hi,
2010/5/7 Diogo Almeida <redmine@ruby-lang.org>:
> I've created a github public repository, which is accessible at http://github.com/DBA/mediainfo_ruby_bug. In this repo you'll be able to find a couple of self-contained... -
07:27 AM Bug #3250: [BUG] Segmentation fault
- =begin
Hello Yusuke Endoh,
I've created a github public repository, which is accessible at http://github.com/DBA/mediainfo_ruby_bug. In this repo you'll be able to find a couple of self-contained tests that reproduce the reported b... -
03:52 PM Bug #3220 (Closed): bug in gc.c
- =begin
[ruby-core:30082]
=end
- 03:07 PM Revision 01a21e44 (git): * 2010-05-08
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:07 PM Revision 1926eb04 (git): * 2010-05-08
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:07 PM Revision 3ed2a5fe (git): don't sleep indefinitely. collect the zombie.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:07 PM Revision 0365096b (git): don't sleep indefinitely. collect the zombie.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:51 PM Revision 92834498 (git): * version.h: bump up to 1.9.3.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:29 PM Revision 86bc5995 (git): * properties.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:29 PM Revision a0136f4f (git): * properties.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:12 PM Bug #1685: Some windows unicode path issues remain
- =begin
Hi,
U.Nakamura wrote:
>
> I assume,
>
> 1) matz: the grand designer of Ruby
> 2) naruse: an authority of Ruby M17N
> 3) me: main maintainer of Ruby on Windows
> 4) all users of Ruby, of course, especially people using... -
11:56 AM Bug #1685: Some windows unicode path issues remain
- =begin
Hello,
In message "[ruby-core:30071] Re: [Bug #1685] Some windows unicode path issues remain"
on May.07,2010 06:11:00, <billk@cts.com> wrote:
> Regarding advocacy: apart from yourself, who are the people
> who need to c... -
06:11 AM Bug #1685: Some windows unicode path issues remain
- =begin
Hi,
U.Nakamura wrote:
>
>> How does it break compatibility, if we allow filesystem encoding
>> to become UTF-8 when rb_default_external_encoding is UTF-8?
>
> You should advocate using default_internal instead of
> def... -
11:37 AM Bug #3253 (Closed): cannot install ruby on windows
- =begin
This issue was solved with changeset r27653.
Usaku, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
12:59 AM Bug #3253: cannot install ruby on windows
- =begin
=end
-
12:44 AM Bug #3253: cannot install ruby on windows
- =begin
#1851 のクロスビルドの環境ですが、最終的にはこっちの問題に引っかかってmake installが出来ていません。
i386-mingw32-fakeでRUBY_PLATFORMが"i386-mingw32"になっていて「/mswin|mingw/ =~ RUBY_PLATFORM」が真になるのに「ruby 1.9.2dev (2010-05-06 trunk 27646) [i686-linux]」の方には tmpdir.so がないので... -
12:34 AM Bug #3253: cannot install ruby on windows
- =begin
=end
-
09:08 AM Revision a5a7f3a4 (git): branches ruby_1_9_2 from r27656 on the trunk for release process of Ruby 1.9.2.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:09 AM Revision 44ff836e (git): Revert r26058 "* test/webrick/test_server.rb (test_daemon): simply use fork's return"
- This must use pipe because the target for kill is not direct child.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:55 AM Bug #3248: extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly
- =begin
From: Luis Lavena <redmine@ruby-lang.org>
Subject: [ruby-core:30066] [Bug #3248] extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly
Date: Fri, 7 May 2010 04:33:11 +0900
Message-ID: <4be31977cfc2_999ca9f7d413701... -
06:55 AM Bug #3248: extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly
- =begin
From: Luis Lavena <redmine@ruby-lang.org>
Subject: [ruby-core:30066] [Bug #3248] extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly
Date: Fri, 7 May 2010 04:33:11 +0900
Message-ID: <4be31977cfc2_999ca9f7d413701... -
04:33 AM Bug #3248: extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly
- =begin
Hello Hidetoshi,
Yes, the provided patch solves the issue. Now time to deal with #3253 but that is another issue.
Thank you
--
Luis Lavena
=end
-
06:05 AM Bug #3255 (Closed): Trunk fail to build without explicit ./configure options (yaml.h not found)
- =begin
Hi,
I tried many times today and yesterday to build Ruby on OSX and it get some errors when running 'make'.
Here is the interesting part of the 'make' output.
https://gist.github.com/e3ee480ffe1bc654e635
It compl... -
05:43 AM Bug #3254: [BUG] Segmentation fault
- =begin
Duplication of #3250. My bad.
=end
-
05:40 AM Bug #3254 (Closed): [BUG] Segmentation fault
- =begin
Per message suggestion, reporting a possible segmentation fault bug while yielding a block within mediainfo gem.
/Users/dba/.rvm/gems/ruby-head/gems/mediainfo-0.7.1/lib/mediainfo/attr_readers.rb:36: [BUG] Segmentation fault
... -
04:45 AM Revision 5cea3d2b (git): * .gitignore: ignoring fiddle build files
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:31 AM Bug #3231: Digest Does Not Build
- =begin
Ok, I see what is happening. The include is pulling in digest/extconf.h, not digest/md5/extconf.h. Thus the compile breaks.
The makefile has this:
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\"
Include/ruby/ru... -
02:31 AM Revision 30e678a6 (git): * instruby.rb (install-man): install mdocs directly without
- temporary files. [ruby-dev:41204]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27654 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:30 AM Revision f1307d27 (git): * tool/rbinstall.rb (install-man): install mdocs directly without
- temporary files. [ruby-dev:41204]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27653 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:27 AM Bug #1851 (Rejected): make install problems using mingw on fedora 11
- =begin
rdoc の生成には同じバージョンの ruby (1.9.2のビルドならnativeも1.9.2) を使うべきと言うことのようです。
つまり、ビルドの仕方が悪かった (native の方が 1.8.6 だった) という結論で Rejected にします。
=end
-
12:16 AM Revision 3d923277 (git): * ext/tk/extconf.rb (get_tclConfig_dirs): glob with EXEEXT.
- * ext/tk/extconf.rb (search_tclConfig): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:16 AM Revision 69310faa (git): * ext/tk/extconf.rb (get_tclConfig_dirs): glob with EXEEXT.
- * ext/tk/extconf.rb (search_tclConfig): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e