Activity
From 03/25/2010 to 03/31/2010
03/31/2010
-
11:48 PM Bug #3063 (Closed): document error in IO.new rdoc
- =begin
In IO.new rdoc, textmode and bimode flag explanation is reversed each other.
"b" should be "t" and "t" should be "b".
Here is a patch for SVN.
--- io.c 2010-03-31 22:56:49.000000000 +0900
+++ io.c.new 2010-03-31 23:24:... -
11:33 PM Feature #3036: String#encode(to, from, opt) の opt[:replace] に Hash
- =begin
反対がないので、1.9.2 の feature として認められたとみなします。
なお、実装を諦めた場合や、4月中にできなかった場合は 1.9.2 には入りません。
=end
-
11:28 PM Feature #872: [PATCH] Add a couple of key bindings to ruby-mode.el
- =begin
Firstly, sorry for the very long delay ;)
Recently I've discussed about this feature with some maintainers. Then, now we are plan
to merge your patch for 1.9.2 release. It seems reasonable.
Thanks.
=end
-
10:51 PM Feature #3021: Array#product should accept a block.
- =begin
Hi,
2010/3/31 Yusuke Endoh <redmine@ruby-lang.org>:
> 2010/3/27 Marc-Andre Lafortune <redmine@ruby-lang.org>:
>> Array#permutation and #combination will yield to the given block, or else return an enumerator.
>>
>> I belie... -
01:52 AM Feature #3021: Array#product should accept a block.
- =begin
Hi,
2010/3/27 Marc-Andre Lafortune <redmine@ruby-lang.org>:
> Array#permutation and #combination will yield to the given block, or else return an enumerator.
>
> I believe Array#product should have been designed the sa... -
10:29 PM Feature #2674: RubyVM::InstructionSequence to accept IOs
- =begin
遠藤です。
2010年3月31日14:38 Urabe Shyouhei <shyouhei@ruby-lang.org>:
> _ wanabe さんは書きました:
>
>> ありがとうございます。
>> NG なケースを見つけてしまったので報告します。これで SEGV します。
>
> それはrb_compile_fileのバグでは...
rb_compile_file は T_FILE を受け取るという仕様だったのでしょ... -
02:38 PM Feature #2674: RubyVM::InstructionSequence to accept IOs
- =begin
_ wanabe さんは書きました:
> ありがとうございます。
> NG なケースを見つけてしまったので報告します。これで SEGV します。
それはrb_compile_fileのバグでは...
Signed-off-by: Urabe, Shyuohei <shyouhei@ruby-lang.org>
---
iseq.c | 2 ++
parse.y | 14 ++++++++------
... -
01:15 PM Feature #2674: RubyVM::InstructionSequence to accept IOs
- =begin
ありがとうございます。
NG なケースを見つけてしまったので報告します。これで SEGV します。
a = [nil]
def a.gets
raise
end
RubyVM::InstructionSequence.compile(a)
中を見ると、lex_io_gets から最終的に rb_io_getline_1 を呼び出して
GetOpenFile で RFILE() を使っているようですので、
... -
11:38 AM Feature #2674: RubyVM::InstructionSequence to accept IOs
- =begin
(2010/03/31 2:28), _ wanabe wrote::
> せっかく rb_compile_file があるので、IO を受け付けてくれるなら
> その方が嬉しいと思います。ですので、このパッチに賛成です。
すみません,この件忘れていました.IO を受け付けるのはいいんです
が,gets のありなし,で見分けるのが正しいかだけ気になっています.そこだ
け,Ruby 的に OK とか NG とか,誰か判断してもらえれば.
... -
02:28 AM Feature #2674: RubyVM::InstructionSequence to accept IOs
- =begin
ワナベと申します。
せっかく rb_compile_file があるので、IO を受け付けてくれるなら
その方が嬉しいと思います。ですので、このパッチに賛成です。
=end
-
09:28 PM Feature #2832: Vector#each and Enumerable
- =begin
>
>
> I'm probably crazy, and I must be the only one wishing this, but I wish
> that #collect was used to collect elements (and always returned an array),
> while #map was used to map an object by applying a functor to i... -
12:13 PM Feature #2832: Vector#each and Enumerable
- =begin
I'm probably crazy, and I must be the only one wishing this, but I wish that #collect was used to collect elements (and always returned an array), while #map was used to map an object by applying a functor to its element (and ret... -
06:42 AM Feature #2832: Vector#each and Enumerable
- =begin
=end
-
09:09 PM Revision a4dbc2ea (git): * ext/psych/lib/psych.rb: Syck api compatibility [ruby-core:29157]
- * ext/psych/lib/psych/nodes/node.rb: ditto
* test/psych/test_psych.rb: ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:56 PM Revision c97f5f51 (git): * time.c (rb_big_abs_find_minbit): fix handling the last word.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:31 PM Revision e758c3fb (git): * time.c (long_mul): overflow condition changed.
- (wi_mul): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:51 PM Bug #2965: method `===' called on hidden T_STRING object (NotImplementedError)
- =begin
本件は1.9.2までに改善されるべきだと思います。
いろいろなやり方がありえそうですが、費用対効果でいうととりあえずfreezeするほうに全部倒すというのが現実的でしょうか。
=end
-
06:37 PM Bug #3058 (Closed): Inconsistent eol conversion of IO#read on Windows
- =begin
I found that IO#read(length) don't convert "\r\n" to "\n" on 1.9.x
On ruby 1.8.6 (2010-02-04 patchlevel 398) [i386-mingw32]
irb(main):001:0> File.open('test.txt','r').read
=> "test\n"
irb(main):002:0> File.open('... - 05:58 PM Revision d245582d (git): * 2010-04-01
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:56 PM Revision 69c6ee0b (git): * ext/psych/lib/psych/coder.rb: Adding Syck compatibility to the yaml coder
- * test/psych/test_coder.rb: test for syck compatibility
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:20 PM Feature #3037: testrb の動作が1.8.7 の testrb と違いすぎる
- =begin
=end
-
04:19 PM Bug #3030: make test-all fails with zlib 1.2.4
- =begin
なかだです。
At Sun, 28 Mar 2010 16:39:07 +0900,
Takashi Tamura wrote in [ruby-dev:40802]:
> $ port info zlib
> zlib @1.2.4, Revision 1 (archivers)
>
> 8) Error:
> test_params(TestZlibDeflate):
> Zlib::BufError: buffer error... -
03:34 PM Bug #3056 (Closed): gem unpack fails
- =begin
Hi
`gem unpack something.gem' fails by following error.
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions into the /opt/local/lib/ruby/gems/1.9.1 directory.
I consider... -
02:35 PM Revision 60240745 (git): * time.c (long_mul): extracted from mul and avoid integer overflow.
- (wi_mul): extracted from wmul and avoid integer overflow.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:19 PM Feature #2772: Matrix: Calculating determinant using Bareiss algorithm [patch]
- =begin
Hi. Marc-Andre,
In [ruby-core:29154] the message: "[ruby-core:29154] [Feature #2772]
Matrix: Calculating determinant using Bareiss algorithm [patch]", on
Mar/31 12:14(JST) Marc-Andre Lafortune writes:
>Unless there is obj... -
12:14 PM Feature #2772: Matrix: Calculating determinant using Bareiss algorithm [patch]
- =begin
Unless there is objection, the official spec of determinant will be to calculate the determinant using the algorithm of its choice.
Implementation will rely on #determinant_bareiss and #determinant_gaussian (depending on typ... -
06:37 AM Feature #2772 (Assigned): Matrix: Calculating determinant using Bareiss algorithm [patch]
- =begin
=end
-
01:29 PM Feature #2673: the length for an enumerator generated by Array#permutation and Array#combination
- =begin
むらたです。
On 2010/03/31, at 2:15, _ wanabe wrote:
> ワナベです。
>
> うっかりこんな時期になってしまいましたが(すみません)、この件どうしましょう。
> 未決定の事項が二つもあるので、どうしても 1.9.2 に導入したいという方からの
> 非常に強力な説得でもない限り、1.9.2 では見送りになってしまいそうですが
> どなたかご意見ありませんでしょうか。
>
> # 個人的... -
02:15 AM Feature #2673: the length for an enumerator generated by Array#permutation and Array#combination
- =begin
ワナベです。
うっかりこんな時期になってしまいましたが(すみません)、この件どうしましょう。
未決定の事項が二つもあるので、どうしても 1.9.2 に導入したいという方からの
非常に強力な説得でもない限り、1.9.2 では見送りになってしまいそうですが
どなたかご意見ありませんでしょうか。
# 個人的には、どうしても 1.9.2 に、とまでは思いませんので
# 見送られるならそれでもよいのですが、困る人はいないのかが気... -
12:34 PM Revision fbc42054 (git): * time.c: less bignum allocations.
- * strftime.c (rb_strftime_timespec): defined to avoid rational for
nano second resolution time.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27128 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
07:05 AM Revision 59ad28c2 (git): * test/rake/test_{package_task,rules,task_manager}.rb: use
- temporary directories.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27127 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:44 AM Bug #2770: Matrix: determinant for rectangular matrices should raise an error [patch]
- =begin
=end
-
06:41 AM Feature #2831: Matrix: each, all?, none?, each_with_index, ....
- =begin
=end
-
06:37 AM Feature #2771 (Assigned): Matrix: constructor to build with block
- =begin
=end
-
06:37 AM Bug #2365 (Assigned): Matrix: poor handling of coercion errors [patch]
- =begin
=end
-
06:36 AM Feature #2266: Matrix and Complex [patch]
- =begin
=end
-
06:36 AM Feature #2265: Matrix#empty? [patch]
- =begin
=end
-
06:33 AM Revision f163275b (git): * test/psych/test_emitter.rb (setup): encoding of @out should be same as script's.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:57 AM Revision 35b2c59a (git): * test/rubygems/gemutilities.rb (setup, teardown):
- Object#to_yaml must use syck on RubyGem.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:30 AM Feature #1482: Kernel.exec doesn't respect COMSPEC environment variable on Windows
- Hi,
At Wed, 31 Mar 2010 01:31:39 +0900,
Jon Forums wrote in [ruby-core:29147]:
> I'm curious, where is it described that this behavior is the
> ...
It's depend on "the association of file extension to programs".
> OTH, if `Kerne... -
01:31 AM Feature #1482: Kernel.exec doesn't respect COMSPEC environment variable on Windows
- While I didn't report the behavior, using the code from the OP but using the TCC LE shell from http://www.jpsoft.com/tccledes.htm which has a COMSPEC of
```
[C:\Users\Jon\Documents]echo %COMSPEC%
C:\Program Files\JPSoft\TCCLE11\TCC.... -
12:52 AM Feature #1482: Kernel.exec doesn't respect COMSPEC environment variable on Windows
- Hi, usa
Should we keep this ticket open?
I'd like to close this ticket because there is no feedback from OP.
If you'll still wait, please change the target to 1.9.x.
--
Yusuke Endoh <mame@tsg.ne.jp>
-
01:42 AM Feature #1349 (Rejected): Net::SMTP open_message and send_message always require from_addr, *to_addrs
- =begin
I don't consider it should be done in SMTP layer.
What you need is another higher layer library.
=end
-
01:05 AM Feature #583: TmpdirとTempfile
- =begin
=end
-
12:55 AM Feature #1800: rubygems can replace system executable files
- =begin
Hi,
I guess this feature request includes solution for security concern.
So I moved it to Bug tracker. Tell me if the move has a problem.
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
12:43 AM Feature #2984: string split with capitalize
- =begin
Hi,
Pedro, do you still want the method?
I'll close the ticket unless you answer to suggestions by Naruse
and Kornelius.
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
12:27 AM Feature #3023: RDoc urls
- =begin
Hi,
This ticket is accepted by Eric Hodel, so I set the target to 1.9.2.
It will be deferred to 1.9.x if the commit is late for implementation
freezing (30 Apr.).
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
12:22 AM Bug #2695: Supported Platforms
- =begin
遠藤です。
> そこで、
> * 1.9.2は5.0に上げる
> * 1.9.1は4.0と5.0にする
> のを提案します。
この点については、反対もないようですし、Yugui さんの提案通りと
しましょう。
また、このチケットは放置できない問題なので、Feature よりは Bug の
方がふさわしいと思います。勝手に移動してしまいます。
--
Yusuke Endoh <mame@ts... -
12:16 AM Feature #1473: Improvements on expect.rb
- =begin
Hi,
> I was using expect.rb to substitute expect command (as I'm not in a mood to learn Tcl). However, it demands some attention.
>
> I took expect(1) command as a idea, but not a rule, of how expect should behave.
...
03/30/2010
-
11:38 PM Bug #2365: Matrix: poor handling of coercion errors [patch]
- =begin
Hi, Marc-Andre
In [ruby-dev:40847], [ruby-dev:40849] and [ruby-core:29127],
Keiju and matz agreed with maintainer delegation to Marc-Andre.
So, you are now the maintainer for matrix.rb. Congrats!
http://redmine.ruby-lang... -
02:48 PM Bug #2365: Matrix: poor handling of coercion errors [patch]
- =begin
Hi,
In message "Re: [ruby-core:29113] Re: [Bug #2365](Open) Matrix: poor handling of coercion errors [patch]"
on Tue, 30 Mar 2010 03:22:56 +0900, Yusuke ENDOH <mame@tsg.ne.jp> writes:
|Are you willing to become a main... -
03:23 AM Bug #2365: Matrix: poor handling of coercion errors [patch]
- =begin
Hi, Marc-Andre
Are you willing to become a maintainer for matrix?
If so, I'll suggest Keiju resign, and ask matz's views whether
you are accepted as a new maintainer for matrix.
--
Yusuke ENDOH <mame@tsg.ne.jp>
=end
-
01:50 AM Bug #2365: Matrix: poor handling of coercion errors [patch]
- =begin
Hi,
2010/3/30 Marc-Andre Lafortune <redmine@ruby-lang.org>:
> Reopening the issue.
>
> I feel frustation at such an unsatisfactory answer, coming 4 months after this simple request.
Think about something nice :-)
In a... -
01:14 AM Bug #2365 (Open): Matrix: poor handling of coercion errors [patch]
- =begin
Reopening the issue.
I feel frustation at such an unsatisfactory answer, coming 4 months after this simple request.
I wonder why Keiju insists on remaining maintainer.
=end
-
12:43 AM Bug #2365: Matrix: poor handling of coercion errors [patch]
- =begin
> This behavior is the same as an integer:
>
> % ruby-dev -r matrix -e "p 2 - nil"
> -e:1:in `-': nil can't be coerced into Fixnum (TypeError)
from -e:1:in `<main>'
> I think that these behavior is Ruby's st... -
10:17 PM Bug #3055 (Closed): NEWS: URI Obsoleted methods - =begin
This issue was solved with changeset r27120.
Kazuhiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
09:24 PM Bug #3055: NEWS: URI Obsoleted methods
- =begin
> URI に
> * Obsoleted methods:
> * URI#escape
> * URI#unescape
> とありますが、
> * URI.escape
> * URI.unescape
> ではないでしょうか?
仰るとおりです。
> それから URI.encode と URI.decode でも警告が出ますが、この2個のメソッドも obsolete... -
09:04 PM Bug #3055 (Closed): NEWS: URI Obsoleted methods
- =begin
URI に
* Obsoleted methods:
* URI#escape
* URI#unescape
とありますが、
* URI.escape
* URI.unescape
ではないでしょうか?
それから URI.encode と URI.decode でも警告が出ますが、この2個のメソッドも obsolete なのでしょうか?
% ruby-trunk -v -... -
09:57 PM Revision 0da3fc65 (git): * time.c (timew2timespec): fix previous change.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:37 PM Feature #2442: [irb] interactive help
- =begin
なかださん
中田さんにコミットお願いしてよろしいですか?
=end
-
08:35 PM Feature #1832: irb -w
- =begin
Hi. Yusuke,
Please commit this patch.
=end
-
07:47 PM Bug #3053 (Closed): Psych should not be installed without libyaml.
- =begin
This issue was solved with changeset r27112.
Takashi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
05:24 PM Bug #3053 (Closed): Psych should not be installed without libyaml.
- =begin
At trunk, psych is installed even if the system does not have libyaml.
If psych continues to require libyaml, I think lib/psych should move to
ext/psych/lib/psych, like ext/openssl/lib/openssl and ext/digest/lib/digest.
... -
05:35 PM Bug #3054 (Closed): test/psych is executed without libyaml
- =begin
When I make test-all at trunk, test/psych is executed even if the system
does not have libyaml. test/zlib and others aren't executed if building *.so fails.
Regards.
=end
-
04:08 PM Bug #3052 (Rejected): DRb::start_service fails to detect used port
- =begin
When I call DRb.start_service('druby://localhost:1234') and port 1234 is already in use, I silently end up with a broken DRb service. start_service should detect that the port is already in use and raise an exception.
I've a... - 03:34 PM Revision 8fcc8e2d (git): * 2010-03-31
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27123 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:34 PM Revision 7b83aa4f (git): * time.c (wdivmod): renamed from wdivmodv. fix neg/pos and pos/neg.
- (split_second): return number of seconds as wideval_t.
(timet2wv): new function.
(wv2timet): new function.
(timet2wideval): removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:28 PM Bug #2658 (Closed): rubyspec: Ruby character strings interpolates the return value of Object#inspect, without ivars, if Object#to_s does not return a String instance ERROR
- =begin
=end
-
03:27 PM Feature #2366: private constant
- =begin
=end
-
02:27 PM Feature #2771: Matrix: constructor to build with block
- =begin
Hi, Marc-André
Please commit it.
=end
-
02:24 PM Feature #2772: Matrix: Calculating determinant using Bareiss algorithm [patch]
- =begin
Hi, Marc-André
Did you test for Integer, Rational, Complex, and these mixed Matrix?
Please commit it if it was tested.
=end
-
01:25 PM Revision 39146c6b (git): * time.c: use more polymorphic operations.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:13 PM Revision 91616a00 (git): * NEWS: add URI.decode and URI.encode to Obsoleted methods,
- and fix typos. [ruby-dev:40852]
* NEWS: add Time#subsec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:13 PM Revision cda49a46 (git): fix typos
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:07 PM Revision c4845fdf (git): * time.c: reorder wide value implementation.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:03 PM Revision 6ca6efc2 (git): * lib/irb.rb: suppoort [Feature#988], [ruby-core:21177].
- * lib/irb/context.rb: fix Context#verbose?.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:58 PM Revision 08f82800 (git): * time.c: make wide value more polymorphic.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:24 PM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40843] Re: [Feature #3018] UNINITIALIZED_VAR() マクロの導入"
on Tue, 30 Mar 2010 11:22:22 +0900, Shugo Maeda <shugo@ruby-lang.org> writes:
|私はなひさんに怒られてからPGPと言うようにしていました。
あれ、記憶違いかなあ。
... -
11:22 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
前田です。
2010年3月30日10:51 Yukihiro Matsumoto <matz@ruby-lang.org>:
> |2010/3/30 Yukihiro Matsumoto <matz@ruby-lang.org>:
> |> cvs-admin@ruby-lang.org に gpg サインした ssh2 公開鍵を送っ
> |> てください。cvs-ってところが時代を感じさせますね。
> |
> |gpgサイン→(PGP... -
11:22 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40841] Re: [Feature #3018] UNINITIALIZED_VAR() マクロの導入"
on Tue, 30 Mar 2010 11:12:50 +0900, "NAKAMURA, Hiroshi" <nakahiro@gmail.com> writes:
|では、「gpgサイン」→「gpgを使って署名」くらいでぜひ。
そうです... -
11:13 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
2010/3/30 Yukihiro Matsumoto <matz@ruby-lang.org>:
> |gpgサイン→(PGP|OpenPGP)(サイン|署名)、とするのがよいと思います。
> 記憶違いかもしれませんが、送られてきた署名が gpg で検証できず
> 再送をお願いしたケースがあったはずです。ですから、理屈として
> は、中村さんのおっしゃる通りなのだと思いますが、「こちらは
> gpg を使うから、それで検証できる署名にし... -
10:52 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40839] Re: [Feature #3018] UNINITIALIZED_VAR() マクロの導入"
on Tue, 30 Mar 2010 10:23:59 +0900, "NAKAMURA, Hiroshi" <nakahiro@gmail.com> writes:
|2010/3/30 Yukihiro Matsumoto <matz@rub... -
10:24 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
本題じゃないですが、
2010/3/30 Yukihiro Matsumoto <matz@ruby-lang.org>:
> cvs-admin@ruby-lang.org に gpg サインした ssh2 公開鍵を送っ
> てください。cvs-ってところが時代を感じさせますね。
gpgサイン→(PGP|OpenPGP)(サイン|署名)、とするのがよいと思います。
gpgはOpenPGP仕様(+PGP仕様)を実装したツールの名前なので... -
07:01 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40831] Re: [Feature #3018] UNINITIALIZED_VAR() マクロの導入"
on Mon, 29 Mar 2010 19:45:01 +0900, KOSAKI Motohiro <kosaki.motohiro@gmail.com> writes:
|昨日IRCで代理コミットを立て続けに断れて悲しい思いをしていた所なので... -
12:21 PM Revision ee90d5d3 (git): * ext/psych/extconf.rb: install psych .so to not psych/ but direct.
- This prepends to install *.rb files to psych/psych.
* ext/psych/lib/psych.rb: require 'psych.so'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:00 PM Revision 0cf5d3fa (git): fix previous commit for LP64.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
11:57 AM Revision a00c1c00 (git): * time.c (w2v): renamed from w2xv.
- (v2w): renamed from xv2w.
(rb_time_magnify): takes wideval_t.
(rb_time_unmagnify): returns wideval_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:46 AM Revision f1330fd1 (git): * ext/psych/lib: moved external library dependent files from lib.
- [ruby-core:29129]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:26 AM Revision 38af94c6 (git): * file.c (rb_file_dirname): split from rb_file_s_dirname.
- * load.c (rb_f_require_relative): use absolute path instead of
expanded path.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27111 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:11 AM Revision 84b5e3e0 (git): * version.c (ruby_initial_load_paths): moved initial load path
- from ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27110 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
09:07 AM Bug #3051 (Closed): psych is too osx-specifc - =begin
This issue was solved with changeset r27100.
Michael, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
08:00 AM Bug #3051: psych is too osx-specifc
- =begin
(2010/03/30 6:19), Aaron Patterson wrote:
> On Tue, Mar 30, 2010 at 06:04:59AM +0900, Michael Graff wrote:
>> Bug #3051: psych is too osx-specifc
>> http://redmine.ruby-lang.org/issues/show/3051
>>
>> Author: Michael Graff
... -
06:04 AM Bug #3051 (Closed): psych is too osx-specifc
- =begin
ext/psych/extconf.rb only looks in Macports' directories for libyaml, and will not look in places other OSs may use (such as /usr/pkg for NetBSD.)
Additionally, the message displayed is very OSX specific.
=end
-
09:05 AM Revision 074db9c6 (git): * Makefile.in (config.status): ommit cached results.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:52 AM Revision bdb4e343 (git): * configure.in (RUBY_EXEC_PREFIX, RUBY_LIB_PREFIX): fixed.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:01 AM Bug #3050: Fiber transfer limitation
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40833] [Bug: trunk] Fiber transfer limitation"
on Tue, 30 Mar 2010 04:19:56 +0900, SASADA Koichi <ko1@atdot.net> writes:
| 1.9.2 に入れて欲しい Fiber に関する仕様変更について,一つ忘れていました.
|
| 現在,Fibe... -
04:20 AM Bug #3050 (Closed): Fiber transfer limitation
- =begin
ささだです.
1.9.2 に入れて欲しい Fiber に関する仕様変更について,一つ忘れていました.
現在,Fiber#transfer と Fiber.yield/Fiber#resume は一緒に使うな,使っ
て変なことが起きても知らないよ,という立場を取っています.というのも,一
緒に使うと簡単に SEGV させることが出来るからです.
例:
require 'fiber'
f2 = nil... -
06:41 AM Revision 833393f9 (git): * common.mk (revision.h): add RUBY_BRANCH_NAME.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 05:00 AM Revision 635bdf6f (git): * process.c (proc_daemon): Process.daemon should raise an error on
- failure regardless of whether the implementation uses daemon(3)
or not. [ruby-dev:40832]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:11 AM Revision 4a6acc26 (git): * tool/file2lastrev.rb (VCS::GIT_SVN): removed because git-log can
- deal with git-svn repository faster than git-svn-info.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27105 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:01 AM Revision 0c6fb8cc (git): * tool/file2lastrev.rb (VCS#get_revisions): particular commands do
- not depend on instance.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:36 AM Revision 7cfd27c0 (git): * configure.in (MINIOBJS): use dmydln.o on all platforms.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:27 AM Bug #3039 (Closed): test/psych should use require_relative - =begin
This issue was solved with changeset r27095.
Takashi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
01:33 AM Revision a0d6167d (git): * common.mk (COMMONOBJS): moved dln.o to OBJS not to conflict with
- dmydln.o.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:12 AM Revision 6c7edcb0 (git): update doc.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
03/29/2010
-
11:57 PM Revision 9dd3af9a (git): * ext/psych/extconf.rb: Making library detection more agnostic.
- [ruby-core:29118]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
11:57 PM Revision 797f482f (git): * lib/psych.rb: Fix problem with empty and white-space only strings.
- Thanks Peter McLain!
* test/psych/test_psych.rb: tests for change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:25 PM Bug #2667: Segmentation fault error
- =begin
It happened again this morning:
$ cap deploy:migrations
<internal:gem_prelude>: compile/should not be reached: compile.c:473
/usr/bin/ruby:10808: [BUG] Segmentation fault
ruby 1.9.1p376 (2009-12-07 revision 26041) [x86_64... -
09:50 PM Bug #3039 (Closed): test/psych should use require_relative
- =begin
When make test-all at trunk, load errors on test/psych/helper.rb occur.
Scripts in test/psych/ should use
require_relative 'helper'
instead of
require 'test/psych/helper'.
=end
-
08:33 PM Revision c294fcc0 (git): * lib/psych.rb: documentation updates. Thanks Peter McLain!
- * lib/psych/{coder,tree_builder}.rb: ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:30 PM Bug #2495 (Closed): Matrix: Vector#each2 should check its argument
- =begin
I think that there is not the necessity to change.
However, I acknowledge that it is wrong a result for Integer argument.
And it will happen often mistake Integer pass.
I add type check for Integer only.
=end
-
07:45 PM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
> |Linuxではこの問題にたいして以下のようなマクロで解決しており、同様の手法を導入したいと
> |思うのですが、いかがでしょうか?
>
> いいんじゃないでしょうか。コミットしてください。って、こさき
> さんにコミット権さしあげてましたっけ?
いえ、私はコミッターではないです。
昨日IRCで代理コミットを立て続けに断れて悲しい思いをしていた所なので
コミット権をいただけるならありがたいです。自分でマージしようと思います。
=end
-
09:19 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40779] [Feature #3018] UNINITIALIZED_VAR() マクロの導入"
on Fri, 26 Mar 2010 22:40:53 +0900, Motohiro KOSAKI <redmine@ruby-lang.org> writes:
|最近のgccは未初期化変数をreadしようとすると警告を出すのですが、推論がおおざっぱ... -
06:58 PM Revision e43b9423 (git): * ext/psych/{emitter,parser,psych}.c: move variable
- declaration to the first of the block.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:48 PM Feature #259 (Feedback): String crypt method's salt argument should be optional
- =begin
I don't think it is a good idea to encourage use of weak DES encryption.
=end
-
06:38 PM Bug #2365 (Rejected): Matrix: poor handling of coercion errors [patch]
- =begin
This behavior is the same as an integer:
% ruby-dev -r matrix -e "p 2 - nil"
-e:1:in `-': nil can't be coerced into Fixnum (TypeError)
from -e:1:in `<main>'
I think that these behavior is Ruby's standard be... - 06:26 PM Revision 7abf7e58 (git): * 2010-03-30
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
06:25 PM Revision 03399d90 (git): * test/psych/*: switching tests to use relative require.
- [ruby-core:29104]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
06:21 PM Feature #3037 (Rejected): testrb の動作が1.8.7 の testrb と違いすぎる
- =begin
1.8.7 の testrb では --help オプションで使用可能なオプションが詳しく表示されますが、
ruby 1.9.2dev (2010-03-24 trunk 27030) [x86_64-linux] の testrb は表示しません。
また 1.8.7 の testrb では以下のようにコマンドラインからロードパスを指定して実行出来ますが、
1.9 の testrb ではそれもできません。
$ testrb... - 05:41 PM Revision d1a08068 (git): * 2010-03-30
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 05:41 PM Revision 316a0aa0 (git): * prelude.rb (Process.daemon): New method.
- * .document: Add prelude.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27093 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:11 PM Feature #3036 (Closed): String#encode(to, from, opt) の opt[:replace] に Hash
- =begin
[ruby-dev:40540] の String#encode(to, from, opt) の opt[:replace] に Hash の話を、
別にチケットとして起こしておきます
String#encode(to, from, opt) の opt[:replace] に Hash を与えられるようにして、
そこに、変換元 encoding の文字 => 変換先の文字、という未定義文字の fallback 変換表を与えられるよう... -
03:10 PM Bug #3030: make test-all fails with zlib 1.2.4
- =begin
2010/3/28 Takashi Tamura <redmine@ruby-lang.org>:
> 1.9 の trunk で make test-all すると、
> zlib 関連で以下のようなエラーがあります。
ruby_1_8でも同様でした。zlib 1.2.4への追従が必要ですね。
これもmaintainerが居ないのか。どなたか追いかけてる人は居ますか?
いなければやります。
=end
-
02:09 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40820] Re: [Feature #2969] String#to_f が -h.hhh±pd を解釈できるように"
on Mon, 29 Mar 2010 09:33:27 +0900, "NARUSE, Yui" <naruse@airemix.jp> writes:
|> おお、それは見落としてました。でも、成瀬さんは「printfは1.9.3... -
09:33 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
成瀬です。
2010年3月29日9:08 Yukihiro Matsumoto <matz@ruby-lang.org>:
> まつもと ゆきひろです
>
> In message "Re: [ruby-dev:40816] Re: [Feature #2969] String#to_f が -h.hhh±pd を解釈できるように"
> on Mon, 29 Mar 2010 08:08:37 +0900, "NARUS... -
09:08 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
まつもと ゆきひろです
In message "Re: [ruby-dev:40816] Re: [Feature #2969] String#to_f が -h.hhh±pd を解釈できるように"
on Mon, 29 Mar 2010 08:08:37 +0900, "NARUSE, Yui" <naruse@airemix.jp> writes:
|> * 1.9.2には導入しない。将来とも拒否というわけではない。
... -
08:08 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
成瀬です。
(2010/03/29 7:04), Yukihiro Matsumoto wrote:
> まつもと ゆきひろです
>
> すいません、忙しくて放置してました。
>
> In message "Re: [ruby-dev:40650] [Feature #2969] String#to_f が -h.hhh±pd を解釈できるように"
> on Tue, 16 Mar 2010 04:01:52 +0900... -
07:04 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
まつもと ゆきひろです
すいません、忙しくて放置してました。
In message "Re: [ruby-dev:40650] [Feature #2969] String#to_f が -h.hhh±pd を解釈できるように"
on Tue, 16 Mar 2010 04:01:52 +0900, Yui NARUSE <redmine@ruby-lang.org> writes:
|
|Feature #2969: Str... - 12:48 PM Revision a828a658 (git): * prelude.rb, .document: Stuff in prelude.rb should be documented
- as well.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
11:27 AM Revision cd492563 (git): * lib/matrix.rb(Vector#each2, Vector#collect2): add type check for
- Integer[Bug #2495].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:47 AM Revision 33d16472 (git): * time.c: wide value condition changed.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:11 AM Bug #3035: Time#zone doesn't round-trip
- =begin
Ok. I found a good explanation in this thread: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/22892
I think it would be more pragmatic to include the zone name and fall back to utc_offset. Lossy marshaling is su... -
08:30 AM Bug #3035 (Rejected): Time#zone doesn't round-trip
- =begin
It's intended.
Time#utc_offset does round-trip but not #zone.
=end
-
07:55 AM Bug #3035 (Rejected): Time#zone doesn't round-trip
- =begin
>> Time.now.zone
=> "PDT"
>> Marshal.load(Marshal.dump(Time.now)).zone
=> nil
=end
-
09:10 AM Revision b1b3e135 (git): * lib/optparse.rb (Numeric): accept rationals.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27089 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 08:40 AM Revision 098adfab (git): * 2010-03-29
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:40 AM Revision e814f147 (git): * ext/rational/lib/rational.rb: fix [Bug #1397].
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:05 AM Feature #1395: Steppable Kernel::eval
- =begin
Assuming Rocky is correct, there's nothing to do; it's been done already. Too bad for me I didn't know about it. Seems like this can be closed now.
=end
-
06:42 AM Bug #3034 (Closed): Bignum: "bigadd_core: Assertion `i <= zn' failed"
- =begin
ruby -ve 'Marshal.load(File.read("/tmp/bignum.mars")).reduce(:*)'
ruby 1.9.2dev (2010-03-22 trunk 27009) [i686-linux]
ruby: bignum.c:1844: bigadd_core: Assertion `i <= zn' failed.
Aborted
`bignum.mars`, att... -
06:11 AM Revision d0cb5c71 (git): * lib/tempfile.rb (Tempfile#open): re-open with same mode and
- options as initialize.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
05:59 AM Revision d894e1d9 (git): instance_methods should not special-case singleton classes, fixes #2993
- Signed-off-by: URABE, Shyouhei <shyouhei@ruby-lang.org>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:30 AM Revision 0a5d4d29 (git): * test/psych/visitors/test_to_ruby.rb: switching to assert_in_delta
- * test/psych/visitors/test_yaml_tree.rb: switching to assert_in_delta
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:40 AM Revision 6c4a07df (git): Revert "* configure.in (ac_cv_func_snprintf, ac_cv_func_vsnprintf):"
- This reverts commit r27078.
It causes build failure on some environments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:43 AM Bug #3033: backtrace of SystemStackError disappeared
- =begin
遠藤です。
2010年3月29日0:00 Yusuke ENDOH <mame@tsg.ne.jp>:
> なぜか SystemStackError の時のバックトレースが出なくなっているようです。
git bisect 先生によると r25680 が原因のようです。
--
Yusuke ENDOH <mame@tsg.ne.jp>
=end
-
12:00 AM Bug #3033 (Rejected): backtrace of SystemStackError disappeared
- =begin
遠藤です。
なぜか SystemStackError の時のバックトレースが出なくなっているようです。
$ ./ruby -ve 'def foo; bar; end; def bar; foo; end; def baz; foo; end; baz'
ruby 1.9.2dev (2010-03-26 trunk 27063) [i686-linux]
-e:1: stack level too deep (Syst... -
12:21 AM Revision 46a4000a (git): * random.c: change include order; ruby.h should be at first.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
03/28/2010
-
11:57 PM Bug #1685: Some windows unicode path issues remain
- =begin
Hello,
In message "[ruby-core:29082] Re: [Bug #1685] Some windows unicode path issues remain"
on Mar.28,2010 16:51:26, <billk@cts.com> wrote:
> I understand how this might be considered a 'feature', but
> I think it is ... -
04:51 PM Bug #1685: Some windows unicode path issues remain
- =begin
Hi,
U.Nakamura wrote:
> Hello,
>
> In message "[ruby-core:28979] [Bug #1685] Some windows unicode path issues remain"
> on Mar.25,2010 19:10:35, <redmine@ruby-lang.org> wrote:
>> I wonder if there is a reason this sho... -
11:34 PM Revision cb905aff (git): * psych: svn:eol-style.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 09:49 PM Revision 910a0781 (git): * 2010-03-29
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:49 PM Revision b9b923ca (git): * ext/psych/*: importing Psych to trunk
- * test/psych/*: ditto
* lib/psych/*: ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27079 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:02 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
> > 統一性とバランスの問題です。
>
> 何の統一性とバランスでしょう。
> String#to_i との統一性とバランス、でしょうか。
[ruby-dev:40728] で書いたようなことです。
たとえば、to_i は16進数を拒否できますが、to_f は選択肢がありません。両
者は違いが出てきています。僕は成瀬さんがいう利点についてはあまり異論は
ないですよ。失うものがあるように感じて、それが気になっているだけです。
実... -
07:36 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
> これだけだと「直感的に気に入らない。」としか読めないのでなんとか言語化してもらえませんか。
(中略)
> 私から見ると成瀬さんの意見は「賛成できないけどいいたいことは分かる。」ですが
> ふなばさんのメールはそもそも言いたい事がよく分からないので返信が書きにくいです。
一旦長めの返事書いたんだけど、また分らないって言われそうなんで、もう
to_f は strtod(3) ですって事でいいかな。こんなところで頑張っても俺的に
バランスを... -
04:12 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/27 23:49), Tanaka Akira wrote:
> 2010年3月27日19:14 NARUSE, Yui<naruse@airemix.jp>:
>
>> ML 上での最大の use case は浮動小数点数を理解していないユーザへの説明用でしょうね。
>
> その用途に必要なのは、String#to_f より、まず Float#to_s なんじゃないですかね。
>
> printf でもいいですが。... -
03:24 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/27 21:46), EGUCHI Osamu wrote:
> えぐち@エスアンドイーです
>
>
> 2010年3月27日21:01 NARUSE, Yui<naruse@airemix.jp>:
>> (2010/03/27 20:26), EGUCHI Osamu wrote:
>>> 2010年3月27日19:14 NARUSE, Yui<naruse@airemix.jp>:
>>>> よって、String#t... -
02:48 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/27 20:56), Tadayoshi Funaba wrote:
>> つまり、ふなばさんは 16 進よりも 2 進や 8 進形式が好みであるところ、
>> 16 進がそれらを差し置いて入るのは納得できないという事でしょうか。
>
> 統一性とバランスの問題です。
何の統一性とバランスでしょう。
String#to_i との統一性とバランス、でしょうか。
>> わたしの主張は、以下のようなものです。
>> ... -
04:39 PM Bug #3030 (Closed): make test-all fails with zlib 1.2.4
- =begin
1.9 の trunk で make test-all すると、
zlib 関連で以下のようなエラーがあります。
$ ./ruby -v
ruby 1.9.2dev (2010-03-26 trunk 27066) [x86_64-darwin10.2.0]
$ port info zlib
zlib @1.2.4, Revision 1 (archivers)
8) Error:
test_params(T... -
01:34 PM Revision a8a99a73 (git): * configure.in (ac_cv_func_snprintf, ac_cv_func_vsnprintf):
- use own vsnprintf to avoid locale problems and platform
difference.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:04 PM Bug #3024: mkmf: Directory names with spaces cause invalid Makefiles to be generated
- =begin
Hi,
2010/3/27 Sam Quigley <redmine@ruby-lang.org>:
> mkmf does not properly quote or escape directory names containing spaces, and thus creates invalid Makefiles.
Thank you for your reporting and investigating.
I thin... -
11:08 AM Feature #1599 (Closed): ruby test_foo.rb --help do not show help message
- =begin
=end
-
10:39 AM Feature #1599: ruby test_foo.rb --help do not show help message
- =begin
On Mar 21, 2010, at 20:00 , Yusuke Endoh wrote:
> Issue #1599 has been updated by Yusuke Endoh.
>
> Assigned to changed from Yukihiro Matsumoto to Ryan Davis
>
> Hi,
>
>> I execute below command.
>> I think it show... -
11:06 AM Bug #2695: Supported Platforms
- =begin
2010/3/28 Kenta Murata <muraken@gmail.com>:
> ということで、macports を使用しない場合のテストもやってみました。
>
> make test
> http://gist.github.com/346098
> 結果: 全パス
>
> make test-all
> http://gist.github.com/346141
> 結果: 5F2E
>
> make test-rub... -
12:23 AM Bug #2695: Supported Platforms
- =begin
むらたです。
On 2010/03/27, at 22:49, Kenta Murata wrote:
> On 2010/03/27, at 19:00, sh@sheepman.sakura.ne.jp wrote:
>
>> こんにちは sheepman です。
>>
>>> ../../src/ruby.git/configure \
>>> (略
>>> --with-opt-dir=/opt/local \
>>... -
09:06 AM Bug #3027 (Closed): Random#rand(nil)
- =begin
Hi Nobu.
Looking at Random#rand, I notice that passing nil has the same result as not passing any argument.
Either it should raise an ArgumentError like the documentation implies, or else the documentation should be mod... -
04:26 AM Revision 1720e7e0 (git): * lib/scanf.rb: fix max width modifier for %f.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:40 AM Bug #2667: Segmentation fault error
- =begin
I too am seeing this:
$ rails -v
<internal:gem_prelude>: compile/should not be reached: compile.c:473
/usr/bin/ruby:10808: [BUG] Segmentation fault
ruby 1.9.1p376 (2009-12-07 revision 26041) [x86_64-linux]
-- control... - 01:37 AM Revision 1392791a (git): Imported minitest 1.6.0 r5717.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:13 AM Revision d8cc6ccb (git): * time.c (rb_time_magnify): fix for LP64.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:56 AM Revision 63dd5096 (git): * lib/scanf.rb: fix %[egEFG] isn't accept.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:54 AM Revision c08277c6 (git): * time.c: rename small integer specialization related identifiers.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
03/27/2010
-
11:56 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
>> つまり、ふなばさんは 16 進よりも 2 進や 8 進形式が好みであるところ、
>> 16 進がそれらを差し置いて入るのは納得できないという事でしょうか。
>
> 統一性とバランスの問題です。
これだけだと「直感的に気に入らない。」としか読めないのでなんとか言語化してもらえませんか。
今のところふなばさんの意見に賛成する理由はないというか、そもそも意図が
明白ではないように見えているので、現時点でのrevertには反対です。
... -
09:01 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/27 20:26), EGUCHI Osamu wrote:
> えぐち@エスアンドイーです
>
> 2010年3月27日19:14 NARUSE, Yui<naruse@airemix.jp>:
>> さて、えぐちさんの指摘は第一にはリテラルとしての導入は不可能という指摘だと思います。
>> それは仰るとおりです。
>
> リテラル表現には(そのままの)aA 表現は導入不可能という点には
> 異論はないという共通認... -
08:56 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
> つまり、ふなばさんは 16 進よりも 2 進や 8 進形式が好みであるところ、
> 16 進がそれらを差し置いて入るのは納得できないという事でしょうか。
統一性とバランスの問題です。
> わたしの主張は、以下のようなものです。
> (1) -h.hhh±pd 形式は、符号・仮数・指数という浮動小数点数をそのまま表しているため、
> 浮動小数点の内容を知るのに有用である
> (2) -h.hhh±pd 形式は、C99 の浮動... -
07:14 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/27 18:19), KOSAKI Motohiro wrote:
>>> strtod(3) を参考にしたり、影響されたりすることは普通にあるとは思います
>>> が、strtod をこれ程までに尊敬している人は初めてです。
>>
>> わたしの主張は、以下のようなものです。
>> (1) -h.hhh±pd 形式は、符号・仮数・指数という浮動小数点数をそのまま表しているため、
>> 浮動小数点の内容を知るのに有用... -
06:19 PM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
>> strtod(3) を参考にしたり、影響されたりすることは普通にあるとは思います
>> が、strtod をこれ程までに尊敬している人は初めてです。
>
> わたしの主張は、以下のようなものです。
> (1) -h.hhh±pd 形式は、符号・仮数・指数という浮動小数点数をそのまま表しているため、
> 浮動小数点の内容を知るのに有用である
> (2) -h.hhh±pd 形式は、C99 の浮動小数点数リテラルの一形式であり、
>... -
08:29 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/26 4:02), Tadayoshi Funaba wrote:
>> なぜ同じなのでしょう。
>> 現在サポートしていないのは単に実装時期の問題だと思っているのですが。
>
> 同じというよりは、もっと低いですかね。
>
>> Ruby のリテラルは C 言語由来と思われるので、
>> これもやはり外しているとは思いません。
>> それとも、先に Ruby リテラルにこの形式を入れるべきという主張ですか?
> ... -
08:26 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
成瀬です。
(2010/03/26 8:20), EGUCHI Osamu wrote:
> えぐち@エスアンドイーです
> #おひさしぶりです
>
> 2010年3月24日2:55 NARUSE, Yui<naruse@airemix.jp>:
>> (2010/03/23 21:23), Tadayoshi Funaba wrote:
>>>> String#to_f は従来から指数表記を許していたので、
>>>> String... -
11:24 PM Revision 86aa8f3f (git): * time.c (weq): optimize for small integer.
- (wne): ditto.
(wlt): ditto.
(wgt): ditto.
(wle): ditto.
(wge): ditto.
(rb_time_magnify): ditto.
(rb_time_unmagnify): ditto.
(rb_time_unmagnify_to_float): new function to avoid rational for
Time#to_f and Time#-.
git-svn-... -
10:50 PM Bug #2695: Supported Platforms
- =begin
むらたです。
On 2010/03/27, at 19:00, sh@sheepman.sakura.ne.jp wrote:
> こんにちは sheepman です。
>
>> ../../src/ruby.git/configure \
>> (略
>> --with-opt-dir=/opt/local \
>> (略
>
> これだと拡張ライブラリが Apple 提供のライブラリではなくてMacPortsか何かとリン... -
07:00 PM Bug #2695: Supported Platforms
- =begin
こんにちは sheepman です。
> ../../src/ruby.git/configure \
> (略
> --with-opt-dir=/opt/local \
> (略
これだと拡張ライブラリが Apple 提供のライブラリではなくてMacPortsか何かとリンクしてしまうと思うのですが。
それはそうと、最新のMacPortsにリンクしてビルドすると zlib と openssl でエラーが増えるのですが、むらたさ... -
03:24 PM Bug #2695: Supported Platforms
- =begin
むらたです。
On 2010/03/26, at 23:29, Yusuke ENDOH wrote:
>> やってくれる人にお願いしたいのは
>> * 今Leopardではtest-allはだいたい 10F
>> 未満で推移していて、rubyspecも大体通ります。ただし、bootstraptest/test_ioが刺さります。
>> ?Snow Leopardがこれより深刻な状況でないことを確認して報告してください
>
> し... -
10:14 PM Revision 075cbd2a (git): * time.c (mul): condition refined.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:26 PM Feature #1395: Steppable Kernel::eval
- =begin
The existing low-level mechanisms in fact do cover this right now. Higher-level tools like debug.rb may need to be adjusted.
There are a couple support issues in Ruby that I think could be addressed slightly better. In part... - 05:14 PM Revision d5c005fd (git): * 2010-03-28
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:14 PM Revision f0aa9838 (git): * time.c: fix previos commit.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:41 PM Feature #1961: Kernel#__dir__
- =begin
On Fri, Mar 26, 2010 at 8:27 PM, Caleb Clausen <vikkous@gmail.com> wrote:
> Yes, you are right. I tend to blur the distinction between subclassing
> and extending objects at runtime in my own thinking. But whichever it
> is, I... -
04:08 PM Feature #1291: O_CLOEXEC flag missing for Kernel::open
- =begin
> I'm not against it, although I hope it should be automatic in
> the future as mentioned in [ruby-core:22899].
Umm, sorry, I haven't catch your mention. I think IO::close_on_exec
can only be used for already opened file... -
09:59 AM Feature #1291: O_CLOEXEC flag missing for Kernel::open
- =begin
Hi,
At Fri, 26 Mar 2010 23:46:22 +0900,
Motohiro KOSAKI wrote in [ruby-core:29039]:
> File 0001-O_CLOEXEC.patch added
I'm not against it, although I hope it should be automatic in
the future as mentioned in [ruby-core:22... -
12:41 AM Feature #1291: O_CLOEXEC flag missing for Kernel::open
- =begin
On Fri, Mar 26, 2010 at 16:02, stygian23 <stygian23@aol.com> wrote:
> How do I unsubscribe to this, as its currently flooding my work e-mail and I
> don't have the time to follow my intellectual curiosity.
Nor time to Google... - 02:18 PM Revision 7f9b9fba (git): * 2010-03-27
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:18 PM Revision cea57f8f (git): * time.c: use 64bit arithmetic even on platforms with 32bit VALUE.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27067 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:58 PM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
2010年3月27日9:17 SASADA Koichi <ko1@atdot.net>:
> ささだです.
>
> (2010/03/26 22:40), Motohiro KOSAKI wrote::
>> Linuxではこの問題にたいして以下のようなマクロで解決しており、同様の手法を導入したいと
>> 思うのですが、いかがでしょうか?
>>
>> #define uninitialized_var(x) x = x
>
> な... -
09:17 AM Feature #3018: UNINITIALIZED_VAR() マクロの導入
- =begin
ささだです.
(2010/03/26 22:40), Motohiro KOSAKI wrote::
> Linuxではこの問題にたいして以下のようなマクロで解決しており、同様の手法を導入したいと
> 思うのですが、いかがでしょうか?
>
> #define uninitialized_var(x) x = x
なんとなく,マクロの名前が小文字ってのに違和感があるんですが,そうでも
ないでしょうか.それとも,別のプログラム(L... -
10:01 AM Feature #3023: RDoc urls
- =begin
I have been meaning to implement this feature in RDoc, but I have been focused on cleanup. Hopefully soon!
=end
-
06:08 AM Feature #3023 (Closed): RDoc urls
- =begin
Currently, rdoc generates url for methods that look like:
.../classes/Enumerable.html#M002713
This has two drawbacks.
1) This URL is subject to change when methods are added/removed. This makes it impossible to r... -
06:50 AM Bug #3024 (Closed): mkmf: Directory names with spaces cause invalid Makefiles to be generated
- =begin
mkmf does not properly quote or escape directory names containing spaces, and thus creates invalid Makefiles. For example, a recent run of mkmf created a Makefile containing:
BINDIR = $(bindir)
RUBYCOMMONDIR = $(s... -
04:13 AM Bug #3022 (Closed): What are $. and ARGF.lineno ?
- =begin
1) $. is not officially documented.
This makes it difficult to know if it works as expected or not...
The Ruby Prog Language (Flanagan & Matz) states:
"The number of the last line read from the current input file. Eq... -
02:59 AM Feature #3021 (Closed): Array#product should accept a block.
- =begin
Array#permutation and #combination will yield to the given block, or else return an enumerator.
I believe Array#product should have been designed the same way.
Returning an enumerator today would break compatibility tho... -
12:37 AM Bug #3015: NetBSD vs test/dl
- =begin
On 3/26/10 8:16 AM, Aaron Patterson wrote:
> Are you on 32bit or 64bit? I'll try installing a virtual machine.
That machine is i386, so 32-bit. I have another VM there I can spin up
(and would have to update to latest code...
03/26/2010
-
11:46 PM Feature #1291: O_CLOEXEC flag missing for Kernel::open
- =begin
Grr, I forgot to fix commnet. fixed.
=end
-
11:42 PM Feature #1291: O_CLOEXEC flag missing for Kernel::open
- =begin
Sure. This is linux specific feature. and I attached the proposal patch.
test way:
test.rb
--------------------------
open("foo", File::CREAT|File::RDWR|File::CLOEXEC, 0644)
strace -e open ruby test.rb
------... -
11:29 PM Bug #2695: Supported Platforms
- =begin
遠藤です。
2010年3月26日22:06 Yugui <yugui@yugui.jp>:
>> supported platform を増やすのには、基本的には反対です。リリース
>> 難易度が上がりますので。久しく (最低 1 年は) best effort として
>> メンテナンスされてきて、現在もメンテナがいて、今後も継続なメンテ
>> ナンスが期待できる platform なら、supported にしてもいいかも知れ
>
... -
10:07 PM Bug #2695: Supported Platforms
- =begin
2010/3/26 Yusuke ENDOH <mame@tsg.ne.jp>:
> ただ、1.9.1 ブランチメンテナ (Yugui さん) のメンテナンスコストが
> 高まる気はします。Yugui さんは、もっと自分が楽になる方向に指針を
> 決めていいと思います。
Debianの特定リリースで特有の深刻な1.9.1のバグは最早出ない、と期待します。
私がリリース時に動作検証できればあまり問題は無いです。
> supported ... -
09:58 PM Bug #2695: Supported Platforms
- =begin
2010/3/26 Yusuke ENDOH <mame@tsg.ne.jp>:
> の Platform Maintainers によると Mac OS X のメンテナがいないような
> 気がしますが、記載漏れですかね。Best effort でもメンテナはいないと
> ダメみたいなんですが。
そのページに書いてあるように、
> なお、「メンテナがいる」とは明確なのプラットフォームメンテナがいるもの(mswin32など)のほかに、「日々そ... -
07:45 PM Bug #2695: Supported Platforms
- =begin
遠藤です。
お返事ありがとうございます。
2010年3月26日10:54 Yugui <yugui@yugui.jp>:
> 2010/3/26 Yusuke Endoh <redmine@ruby-lang.org>:
>> サポート終了してしまいました。どうしましょう。
>>
>> 1) 1.9.1 はそのまま、1.9.2 では 5.0 に上げる
>> 2) 1.9.1(-pXXX) も 1.9.2 も 5.0 に上げる
>
... -
07:10 PM Bug #2695: Supported Platforms
- =begin
遠藤です。
2010年3月26日18:33 Kenta Murata <muraken@gmail.com>:
> On 2010/03/26, at 10:54, Yugui wrote:
>
>>> また、supported platform について他に何か変更などの考えはあるでしょうか。
>>> Snow Leopard とか。
>>
>> それと同じ理由で、私の環境はまだLeopardなのでこのままではSnow Leopard... -
06:33 PM Bug #2695: Supported Platforms
- =begin
むらたです。
On 2010/03/26, at 10:54, Yugui wrote:
>> また、supported platform について他に何か変更などの考えはあるでしょうか。
>> Snow Leopard とか。
>
> それと同じ理由で、私の環境はまだLeopardなのでこのままではSnow Leopardはperhapsになります。Snow
> Leopardで継続的ビルド環境を立ち上げてくださる方がいれば歓迎し... -
10:54 AM Bug #2695: Supported Platforms
- =begin
2010/3/26 Yusuke Endoh <redmine@ruby-lang.org>:
> サポート終了してしまいました。どうしましょう。
>
> 1) 1.9.1 はそのまま、1.9.2 では 5.0 に上げる
> 2) 1.9.1(-pXXX) も 1.9.2 も 5.0 に上げる
かなり悩ましいです。1.9.1の途中で変えるのは望ましくないし、一方メンテナンス終了してるディストリビューションだけってのもいまいちだからです。
... -
02:53 AM Bug #2695: Supported Platforms
- =begin
遠藤です。
2010年3月26日2:37 Yusuke Endoh <redmine@ruby-lang.org>:
> また、supported platform について他に何か変更などの考えはあるでしょうか。
> Snow Leopard とか。
>
> release plan に書いていませんでしたが、4 月末の preview2 リリースまでには
> 決めないといけないと思います。
間違えた、5 月末ですね。
--... -
02:37 AM Bug #2695: Supported Platforms
- =begin
Yugui さん
遠藤です。
> http://redmine.ruby-lang.org/wiki/ruby-19/SupportedPlatforms の
> Supported ですが、Debian GNU/Linux 4.0 on IA32 はセキュリティ
> サポートももうすぐ終わるので、5.0 にあげた方が良いのではないで
> しょうか?
サポート終了してしまいました。どうしましょう。
1)... -
11:07 PM Bug #1678 (Closed): uninitialized value in ossl_x509store_initialize causes occasional segfault
- =begin
This issue was solved with changeset r27064.
Peter, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
10:40 PM Feature #3018 (Closed): UNINITIALIZED_VAR() マクロの導入
- =begin
最近のgccは未初期化変数をreadしようとすると警告を出すのですが、推論がおおざっぱなのでたまに的外れな警告を出します。
その副作用でthread.c のdo_select()が現在汚いことになっています。
----------------------------------------------------------------------
static int
do_select(int n, fd_set *read, ... -
10:10 PM Feature #1269: warning when Kernel#p is used
- =begin
2010/3/26 Yusuke Endoh <redmine@ruby-lang.org>:
> 蛇足ですが、他にも簡単な lint を実装するなど面白そう。
> ローカル変数は全部小文字で _ 区切りとか、クラス名は Camel Case
> とか。一行 80 桁とか、1 メソッドの行数は 24 行までとか。異論は
> ありそう。
ripperを使ったlint実装の例を公開するほうが、汎用性があって弊害が少なく、その後に続くchecke... -
07:33 PM Feature #1269: warning when Kernel#p is used
- =begin
遠藤です。
2009年3月11日21:31 Yusuke ENDOH <mame@tsg.ne.jp>:
> Kernel#p は非常に便利ですが、デバッグ後に p の呼び出しをすべて消せたか
> 不安になることがあります。
> p という名前は使うときは非常に便利ですが、残念ながら検索するには非常に
> 不便です。単語区切りで検索できないエディタだと検索は限りなく困難ですし、
> 単語区切りで検索できるエディタであっても、... -
09:16 PM Feature #1436: Please consider this addition to resolv.rb which adds methods for resolving LOC resources
- =begin
Hi, akr
2009/5/6 JB Smith <redmine@ruby-lang.org>:
> Please consider this diff which would add support to resolv.rb to permit parsing of LOC resources.
What do you think about this proposal?
I'm not familiar with both r... -
08:02 PM Feature #1395 (Open): Steppable Kernel::eval
- =begin
Hi,
2010/3/26 caleb clausen <redmine@ruby-lang.org>:
> I can't speak for the OP, but what I imagine was intended is something lower-level and finer-grained than set_trace_func. It should allow you to step through code at t... -
12:05 PM Feature #1395: Steppable Kernel::eval
- =begin
I can't speak for the OP, but what I imagine was intended is something lower-level and finer-grained than set_trace_func. It should allow you to step through code at the (YARV) virtual instruction level. That is, there'd be a cal... -
07:37 PM Bug #2995 (Closed): TestHash#test_recursive_check fails
- =begin
This issue was solved with changeset r27062.
Shugo, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
07:35 PM Bug #2995: TestHash#test_recursive_check fails
- =begin
前田です。
2010年3月25日12:17 Shugo Maeda <shugo@ruby-lang.org>:
> Hashのキーにすると危ないものは他にもあるので、このケースだけエラーに
> する必要もないかなと思います。
> 1.8との互換性という意味でもエラーにしない方がいいかもしれないですね。
>
> とくに異論がなければ、テストの方を修正するということでどうでしょうか。
とりあえずテストの方を修正しておきました。
... -
07:12 PM Bug #3014: select + read for STDIN unexpected result on Windows
- =begin
I found that STDIN.read(n) works when n >= 41.
I guess this bug is caused by PeekConsoleInput's bug or side effect.
Here is a guick and dirty patch.
--- win32.c 2010-03-26 19:04:28.502025030 +0900
+++ w... -
01:22 PM Bug #3014: select + read for STDIN unexpected result on Windows
- =begin
=end
-
10:53 AM Bug #3014 (Closed): select + read for STDIN unexpected result on Windows
- =begin
I found that select and read combination for STDIN results "r u b y . e x e" on Windows.
Consider following code:
select([STDIN],nil,nil,10);puts STDIN.read(8)
I entered "test1234\n" for input.
On 1.8.6, it work... -
04:18 PM Bug #3015: NetBSD vs test/dl
- =begin
On 3/25/10 8:22 PM, Aaron Patterson wrote:
> Most likely this will be fixed when I get the dl/ffi underpinnings
> merged to trunk. In the mean time, could you try against my ruby fork
> that has ffi integrated?
Trying ... -
03:04 PM Bug #3015: NetBSD vs test/dl
- =begin
On 3/25/10 8:22 PM, Aaron Patterson wrote:
> Most likely this will be fixed when I get the dl/ffi underpinnings
> merged to trunk. In the mean time, could you try against my ruby fork
> that has ffi integrated?
>
> htt... -
12:20 PM Bug #3015: NetBSD vs test/dl
- =begin
=end
-
11:49 AM Bug #3015 (Closed): NetBSD vs test/dl
- =begin
There are probably related problems with the mentioned tests, or the code they are testing, on NetBSD 5.0.2.
I have not yet investigated the cause of these.
1) Error:
test_to_ptr_io(DL::TestCPtr):
RangeError: bign... -
02:55 PM Revision c31129ff (git): * NEWS: add Thread#add_trace_func and Thread#set_trace_func.
- * test/ruby/test_settracefunc.rb (test_thread_trace): add test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:04 PM Revision 2b0156b6 (git): * ChangeLog: add author name of a patch
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:01 PM Bug #3016 (Rejected): Enumerable#slice_before and dup
- =begin
When writing the specs for slice_before, I was surprised that it doesn't call #dup.
class X
def dup
raise "Hi!"
end
end
[:foo].slice_before(X.new){}.to_a
# ==> [[:foo]], I expected it to raise
T... -
02:01 PM Revision 1ab5d394 (git): * ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
- store->ex_data.sk. [ruby-core:28907] [ruby-core:23971]
[ruby-core:18121]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 11:19 AM Revision 4685b6d9 (git): * Makefile.in (DOXYGEN): Define a missing variable DOXYGEN. Build
- has been failing when doxygen(1) is found by configure but the
variable is not defined by the system and make(1) does not allow
an empty command. ("@$(DOXYGEN)" was the cause)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2706... -
10:32 AM Revision 4f7d401d (git): * test/ruby/test_hash.rb (test_recursive_key): recursive keys are
- permitted now. [ruby-dev:40735]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
10:31 AM Feature #3010: slow require gems in ruby 1.9.1
- =begin
I trace 'active_record' and found Gem::LoadError has 3 different performance.
version,time,percent
1.8.7 0.106,100%
1.9.2 orignal,0.184,174%
1.9.2 cut $: to $:[-9,9],0.158,149%
My ruby 1.8/1.9 compile step:
./configure op... -
08:30 AM Feature #3010: slow require gems in ruby 1.9.1
- =begin
On Mar 25, 2010, at 15:45, Roger Pack wrote:
I cannot reproduce with ruby trunk:
>>
>> $ time ruby19 -v foo.rb
>> ruby 1.9.2dev (2010-02-09 trunk 26623) [x86_64-darwin10.2.0]
>> 36
>> 39
>>
>> real 0m0.477s
>
> Fr... -
07:24 AM Feature #3010: slow require gems in ruby 1.9.1
- =begin
I cannot reproduce with ruby trunk:
$ time ruby19 -v foo.rb
ruby 1.9.2dev (2010-02-09 trunk 26623) [x86_64-darwin10.2.0]
36
/usr/local/lib/ruby/site_ruby/1.9.1/rubygems.rb:65: warning: method redefined; discarding old ... -
06:47 AM Feature #3010: slow require gems in ruby 1.9.1
- =begin
It appears that you can avoid the use of gem prelude by doing something like
require 'rubygems'
gem 'xxx'
require 'xxx'
If you run it with 1.9.x with "--disable-gems" thusly, for me it gives
1.8.6: 1.0s
1.9.... -
05:39 AM Feature #3010: slow require gems in ruby 1.9.1
- =begin
Just tried trunk. ruby 1.9.2dev (2010-03-26 trunk 27048) [i686-linux].
The issue still exists.after install and run foo.rb. It shows
105
109
real 0m0.771s
user 0m0.529s
sys 0m0.177s
=end
-
01:22 AM Feature #3010: slow require gems in ruby 1.9.1
- =begin
Have you tried trunk? It would be interesting to use gprof to see what the bottleneck is...
-rp
=end
-
07:32 AM Bug #1085: Got the error message, after run 'gem install --test'.
- =begin
This is a minitest issue.
=end
-
07:30 AM Bug #825: Gem::Installer#generate_windows_script の引数の順番が他と一致しない
- I have applied this patch to RubyGems trunk.
-
07:25 AM Bug #1948: RDoc Fails with Non-ASCII Pathnames
- =begin
I have fixed this in rdoc trunk
=end
-
07:19 AM Bug #1040: rubygems/builder.rb should require user_interaction
- =begin
I have fixed this in RubyGems trunk.
=end
-
07:13 AM Bug #843 (Closed): RubyGems include useless libraries
- =begin
lib/rubygems/test_utilities.rb is generally useful for people writing RubyGems extensions. Moving it to test/ will make it hard to load for these people.
The other files have been removed from RubyGems 1.3.6.
=end
-
07:07 AM Bug #2355 (Closed): Please update rubygems!
- =begin
Nobu updated RubyGems to 1.3.6 for me.
=end
-
05:25 AM Feature #2152: Split functionality of Float#inspect and Float#to_s
- =begin
Here's a patch which restores Float#to_s to its "human readable" form and introduces Float#inspect for the "more verbose" form.
Hopefully it will find approval (another name than inspect would be ok, too, though I prefer ins... -
04:57 AM Bug #2997 (Closed): Patch for ext/tk/extconf.rb X11 build failure on NetBSD 5
- =begin
This issue was solved with changeset r27055.
Michael, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
- 04:10 AM Revision 7d4c34b9 (git): * eval.c (rb_eval): Use for() and make it a bit easier to read and
- debug here.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27061 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:02 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
> なぜ同じなのでしょう。
> 現在サポートしていないのは単に実装時期の問題だと思っているのですが。
同じというよりは、もっと低いですかね。
> Ruby のリテラルは C 言語由来と思われるので、
> これもやはり外しているとは思いません。
> それとも、先に Ruby リテラルにこの形式を入れるべきという主張ですか?
それはよくわかりません。perl 経由のような気もします。仮に別にそうであっ
ても、C に従わなければならな... -
03:31 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
(2010/03/26 3:05), Tadayoshi Funaba wrote:
>> strtod(3) の解釈対象に含まれていない 2 進や 8 進を否定することが、
>> なぜ含まれている 16 進の否定につながるのでしょう。
>
> これは to_f (と Float()) の話で、strtod(3) の話ではありません。成瀬さん
> が認めたように、2進数も8進数もさほど重要だとは思われていなくて、今回の
> 提案にある浮動小... -
03:05 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
> strtod(3) の解釈対象に含まれていない 2 進や 8 進を否定することが、
> なぜ含まれている 16 進の否定につながるのでしょう。
これは to_f (と Float()) の話で、strtod(3) の話ではありません。成瀬さん
が認めたように、2進数も8進数もさほど重要だとは思われていなくて、今回の
提案にある浮動小数点数のための拡張された16進数形式も同じだということだ
と思います。
> String#to_f ... -
02:14 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
成瀬です。
(2010/03/25 2:51), Tadayoshi Funaba wrote:
>> 先のパッチの対象関数が ruby_strtod である通り、
>> 先の提案は strtod(3) をベースにしています。
>> よって、そこにない 2 進や 8 進を独自に追加する必要を感じません。
>
> 意味がわかりません。でも、その必要を感じの中にこの提案も含まれていると
> いうことだと思います。全く必要ないとはいいません... -
04:01 AM Revision 1a80b5c0 (git): * lib/yaml.rb: adding deprecation notices to YAML methods
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:45 AM Revision 02228688 (git): * enum.c (Enumerable#each_entry): New method.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:42 AM Revision f82b8e76 (git): * lib/yaml/basenode.rb: deprecating YPath methods
- * lib/yaml/stream.rb: deprecating YAML::Stream#edit
* test/yaml/test_yaml.rb: requiring yaml/ypath for tests.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
03:33 AM Revision e959fda8 (git): * lib/yaml/encoding.rb: YAML.encode, YAML.decode are deprecated.
- * lib/yaml/stringio.rb: yaml/stringio.rb is deprecated.
* lib/yaml/ypath.rb: YAML::YPath is deprecated.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
01:34 AM Bug #2704 (Assigned): CGI::rfc1123_date causes NameError
- =begin
=end
-
01:19 AM Bug #1421: Permission denied - ~/.ri
- =begin
Backtraces changed on <http://chkbuild.n-z.jp/ruby/debian-amd64/ruby-trunk/log/20100213T073651.diff.txt.gz>,
but it still raises "Permission denied".
=end
-
12:43 AM Feature #1303 (Rejected): A name considered a local variable on RHS of an assignment that defines it
- =begin
Hi,
2009/3/19 Tomas Matousek <redmine@ruby-lang.org>:
> the parser might "visit" RHS first and then define variables in LHS or the other way around. Both options are valid, prioritizing RHS might eliminate some confusion.
... -
12:13 AM Bug #693 (Closed): Thread#set_trace_func seems not to work
- =begin
applied at r27046.
Dave, thank you to report the issue.
=end
03/25/2010
-
11:54 PM Feature #2172: Enumerable#chunk with no block
- Maybe a default block of `{|x| x}` can be useful for some people...
http://stackoverflow.com/questions/2516312/remove-adjacent-identical-elements-in-a-ruby-array
-
11:27 PM Bug #1760 (Closed): Methods Expecting Paths Should Prefer #to_path Over #to_str
- =begin
This issue was solved with changeset r27045.
Run Paint, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
10:58 PM Bug #1810 (Closed): Switching into the specified irb subsession (complains a TypeError)
- =begin
Hi,
I close this ticket because I guess this is already fixed, at least in trunk.
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
10:57 PM Bug #1685: Some windows unicode path issues remain
- =begin
For me, it would be helpful to merge what we have now. I am not aware of any problematic parts with methods which are already implemented. However, I am aware that this can lead in confusion when not everything will work with uni... -
10:28 PM Bug #1685: Some windows unicode path issues remain
- =begin
Hello,
In message "[ruby-core:28979] [Bug #1685] Some windows unicode path issues remain"
on Mar.25,2010 19:10:35, <redmine@ruby-lang.org> wrote:
> I wonder if there is a reason this should not be merged
> into trunk AS... -
07:10 PM Bug #1685: Some windows unicode path issues remain
- =begin
Hi Vit,
Thanks. Wow. Good to know.
win32/win32.c:rb_w32_uchown(const char *path, int owner, int group)
win32/win32.c:rb_w32_ulink(const char *from, const char *to)
win32/win32.c:rb_w32_urename(const char *from, co... -
05:01 PM Bug #1685: Some windows unicode path issues remain
- =begin
Hello Bill,
Are you aware of win32_unicode_branch? Its not up-to-date as far as I know, but there is lot of Unicode functionality covered. There is missing mainly Dir.glob functionality.
Vit
=end
-
10:13 AM Bug #1685: Some windows unicode path issues remain
- =begin
Hi,
I'll be needing win32 unicode path support for my current project, so I would like to try to tackle the remaining issues.
I started with a relatively easy one, Dir.mkdir
For Dir.mkdir, I took an approach simila... -
09:27 PM Feature #1395 (Rejected): Steppable Kernel::eval
- =begin
Hi,
> I could really use a steppable eval in the kernel, or a steppable Kernel::Evaluator class. I think this would be very helpful.
Sorry for late response, but what's "steppable eval" ?
When you register the Fea... -
08:25 PM Feature #1031: -U オプションの説明が --help にない
- =begin
前田です。
2010年3月25日15:11 Urabe Shyouhei <shyouhei@ruby-lang.org>:
> まあみんなでうなっててもしょうがないので改善案を出してみましょうか。
> 以下の例だと横79文字、縦22行です。
えっと、この出力を見てperl -hすると、結局perlの出力が24行を超えてしまうので、
対案として24行の制限を外すというのはどうでしょうか。
--
Shugo Maeda
=end
-
03:12 PM Feature #1031: -U オプションの説明が --help にない
- =begin
まあみんなでうなっててもしょうがないので改善案を出してみましょうか。
以下の例だと横79文字、縦22行です。
Usage:
ruby [options ...] -- script [script optoins...]
Options:
Please consult the online manual for the comprehensive list of options
understood,... -
01:45 PM Feature #1031: -U オプションの説明が --help にない
- =begin
前田です。
2010年3月25日1:45 Yusuke Endoh <redmine@ruby-lang.org>:
> 「縦は24行なので文面を調整すれば80文字に納めるのは可能」とのこと
> ですが、現在すでに 24 行使ってしまっていると思います。
>
> $ ./ruby -h | wc -l
> 24
>
> どういうことなんでしょう。当時はまだ余ってた?
シェルのプロンプトで一行使われることを考えると、現在の24... -
01:45 AM Feature #1031: -U オプションの説明が --help にない
- =begin
遠藤です。
> まつもと ゆきひろです
>
> In message "Re: [ruby-dev:37818] [Bug #1031] -U オプションの説明が --help にない"
> on Thu, 22 Jan 2009 14:02:11 +0900, Shyouhei Urabe <redmine@ruby-lang.org> writes:
>
> |縦は24行なので文面を調整すれば80文字に納める... -
07:56 PM Revision 348ae99e (git): * ext/tk/extconf.rb: fix [ruby-core:28901] [Bug #2997]. Thanks, Michael Graff.
- * ext/tk/tcltklib.c: use xfree() for memories allocated by ALLOC().
* ext/tk/tkutil/tkutil.c: ditto.
* ext/tk/lib/tkextlib/version.rb: forgot updating.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27056 b2dd03c8-39d4-4... -
07:55 PM Revision 9e415266 (git): * ext/tk/extconf.rb: fix [ruby-core:28901] [Bug #2997]. Thanks, Michael Graff.
- * ext/tk/tcltklib.c: use xfree() for memories allocated by ALLOC().
* ext/tk/tkutil/tkutil.c: ditto.
* ext/tk/lib/tkextlib/version.rb: forgot updating.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27055 b2dd03c8-39d4-4d8f-98ff-823... -
07:49 PM Bug #3012 (Closed): update file list in sample/README
- =begin
diff --git a/sample/README b/sample/README
index 9187a9d..930172b 100644
--- a/sample/README
+++ b/sample/README
@@ -3,10 +3,10 @@ biorhythm.rb biorhythm calculator
cal.rb cal(1) clone
cbreak.rb no echo done by ioc... - 07:12 PM Revision 4c440ce8 (git): * prelude.rb, Makefile.in, common.mk: Introduce prelude.rb.
- * eval.c (rb_eval_prelude): New function exported only for use in
preludes.
* configure.in: Define RUBY_EXEC_PREFIX and RUBY_LIB_PREFIX.
* ruby.c (proc_options, ruby_init_loadpath, ruby_prelude): Load
prelude.
* compile_prelude.rb... - 07:11 PM Revision 5c54c575 (git): * prelude.rb, Makefile.in, common.mk: Introduce prelude.rb.
- * eval.c (rb_eval_prelude): New function exported only for use in
preludes.
* configure.in: Define RUBY_EXEC_PREFIX and RUBY_LIB_PREFIX.
* ruby.c (proc_options, ruby_init_loadpath, ruby_prelude): Load
prelude.
* compile_prelude.rb... - 07:00 PM Revision 908667e4 (git): Add tests for Kernel#singleton_class.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:59 PM Revision c36f4b16 (git): * variable.c, intern.h: Add rb_const_remove().
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27051 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
06:46 PM Bug #3005: Ruby core dump - [BUG] rb_sys_fail() - errno == 0
- =begin
Ok, I have made a reduced version of the script that always reproduces the core dumps.
The problem must be related with the oci8, because if I comment out the lines 23 and 25 it does not generate cores.
Hope some one can h... -
09:21 AM Bug #3005 (Feedback): Ruby core dump - [BUG] rb_sys_fail() - errno == 0
- =begin
How to reproduce it?
=end
- 06:10 PM Revision 2292de78 (git): * 2010-03-26
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 06:09 PM Revision cb4d196d (git): * object.c (rb_obj_singleton_class): new method
- Kernel#singleton_class. [ruby-core:21702]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:35 PM Feature #2542: URI lib should be updated to RFC 3986
- 2010/3/25 "Martin J. Dürst" <duerst@it.aoyama.ac.jp>:
> Is there a list of incompatibilities, or can you make one?
Some structures of the syntax is changed in RFC 3986.
This breaks `URI::REGEXP::PATTERN::TOPLABEL` and some constants... -
01:25 PM Feature #2542: URI lib should be updated to RFC 3986
- Hello Yui,
Is there a list of incompatibilities, or can you make one?
Regards, Martin.
---
#-# Martin J. Dürst, Professor, Aoyama Gakuin University
#-# http://www.sw.it.aoyama.ac.jp mailto:duerst@it.aoyama.ac.jp
-
11:56 AM Feature #2542: URI lib should be updated to RFC 3986
- I object to target 1.9.2.
Following RFC 3986 makes some incompatibilities.
It shouldn't be done without consideration.
-
11:39 AM Feature #2542: URI lib should be updated to RFC 3986
- I feel the spec for 1.9.2 has been quite clear for 5 years ... follow RFC 3986!
Integrating some of the features of the addressable gem can be discussed later.
Do we have to wait for Akira Yamada, the official maintainer of this li... - 03:05 PM Revision 77891d86 (git): * 2010-03-26
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:05 PM Revision dfcf3643 (git): add ref.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:02 PM Feature #1961: Kernel#__dir__
- =begin
Actually, I proposed that it be a String subclass, so it actually
would still be a String, but with some additional logic that people
tend to rewrite themselves anyway.
- Charlie (mobile)
On Mar 24, 2010, at 1:35 PM, ... -
12:29 PM Feature #1961: Kernel#__dir__
- =begin
2010/3/24 Charles Oliver Nutter <headius@headius.com>:
> This is nice but would not be backward compatible with code that depends on
> __FILE__ actually being a string (any code that splits on / or builds a path
> with + "../"... -
04:15 AM Feature #1961: Kernel#__dir__
- =begin
>
> Perhaps __FILE__ should not be a raw String object, but rather a
> CurrentFile object. It could have a #to_str to return the normal String so
> it can be used like normal, but can provide methods like #dir, where
> __FILE... -
02:57 PM Bug #2992 (Closed): File operations leak file handles in Windows XP
- =begin
This issue was solved with changeset r27042.
Pete, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
02:56 PM Revision 0a6418d8 (git): * thread.c (thread_reset_event_flags): set flags to thread.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:22 PM Revision e7049973 (git): * file.c (rb_get_path_check): prefer #to_path over #to_str. a patch
- originally written by me, and modified by Nobuyoshi Nakada.
[ruby-core:24257]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
12:18 PM Bug #2995: TestHash#test_recursive_check fails
- =begin
前田です。
2010年3月24日17:08 Nobuyoshi Nakada <nobu@ruby-lang.org>:
> > 以下の変更(r26961)で、TestHash#test_recursive_checkが失敗するようになっている
> > のですが、この変更は意図的でしょうか。
>
> 一応意図的ですが、検討不足でした。
>
> > また、test_recursive_checkにあるように
> >
> > h =... -
12:15 PM Feature #2746 (Closed): ビルドする拡張ライブラリを configure 時に指定するための --with-exts オプション
- =begin
=end
-
12:11 PM Bug #1390 (Assigned): yaml converts DateTime to Time when dumping and parsing again
- =begin
=end
-
11:17 AM Bug #2330 (Closed): Non systematic segmentation fault with autoload rubyspec
- =begin
Crash resolved by r26718
=end
-
10:56 AM Bug #2211 (Open): eval Documentation Claims Proc Accepted for Binding
- =begin
Since Ruby 1.8 does allow passing a Proc, we should agree on the desired behavior.
=end
-
09:11 AM Revision 9c15f6f8 (git): * NEWS: Array#{uniq,uniq!} can take a block. see [ruby-dev:37998]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:23 AM Revision 21f56f6d (git): * NEWS: add IO#autoclose=, IO#autoclose?, IO#codepoints, IO#each_codepoint.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:55 AM Feature #3010 (Assigned): slow require gems in ruby 1.9.1
- =begin
=end
-
04:36 AM Feature #3010 (Closed): slow require gems in ruby 1.9.1
- =begin
ruby 1.9.1 version: ruby 1.9.1p420 (2010-02-04 revision 26571) [i686-linux]
ruby 1.8.7 version: ruby 1.8.7 (2010-01-10 patchlevel 249) [i686-linux]
ruby 1.9 takes a lot time on require 'gemname'
------
for code: foo.rb
... -
05:50 AM Revision b3a039a2 (git): * win32/win32.c (rb_w32_{read,write}): fix handle leaks. based on
- a patch from Heesob Park in [ruby-core:28919]. [ruby-core:28833]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:47 AM Bug #3008 (Closed): Can't compile ruby without ruby
- =begin
This issue was solved with changeset r27037.
Christian, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
04:42 AM Bug #3008 (Open): Can't compile ruby without ruby
- =begin
=end
-
03:54 AM Bug #3008: Can't compile ruby without ruby
- =begin
I have built ruby 1.9.1 (p376 and p378) on several computers without an existing ruby interpreter. It has always successfully built a 'miniruby' to interpret scripts in the build process when I have used it. I have done this su... -
03:51 AM Bug #3008: Can't compile ruby without ruby
- =begin
Some of the ruby 1.9 build scripts are written in ruby. So, you must have an existing ruby already in order to build ruby 1.9. I had thought that the usual workaround was to build a ruby 1.8 release first (which doesn't have this... -
03:49 AM Bug #3008: Can't compile ruby without ruby
- =begin
Okay. It seems the problem was that my sources didn't have their proper timestamps. I worked around this by adding this step *prior* to running configure && make && make install
This "fixes" the timestamps for the files th... -
03:05 AM Bug #3008: Can't compile ruby without ruby
- =begin
I'm not using "trunk".
I'm using ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p376.tar.bz2
^
I jus... -
01:57 AM Bug #3008 (Rejected): Can't compile ruby without ruby
- =begin
Hi,
2010/3/25 Christian Holtje <redmine@ruby-lang.org>:
> I tried to compile ruby 1.9.1-p376 on a new unix system(s). (Linux and Solaris).
> I get the error:
> executable host ruby is required. use --with-baseruby opti... -
01:37 AM Bug #3008 (Closed): Can't compile ruby without ruby
- =begin
What happened:
I tried to compile ruby 1.9.1-p376 on a new unix system(s). (Linux and Solaris).
I get the error:
executable host ruby is required. use --with-baseruby option.
make: *** [miniprelude.c] Error 1
What... -
03:57 AM Bug #1423 (Closed): config.charset not found
- =begin
This issue was solved with changeset r27034.
Kazuhiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
03:39 AM Revision 98131a6d (git): * NEWS: add Kernel#singleton_class.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 03:08 AM Revision e4d8dc5c (git): * bignum.c, node.h, strftime.c, enc/trans/utf8_mac.trans: added explicit casts for supplessing warnings.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:52 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
> 先のパッチの対象関数が ruby_strtod である通り、
> 先の提案は strtod(3) をベースにしています。
> よって、そこにない 2 進や 8 進を独自に追加する必要を感じません。
意味がわかりません。でも、その必要を感じの中にこの提案も含まれていると
いうことだと思います。全く必要ないとはいいませんが、あまり必要でないと
思います。
> scanf も hexadecimal-floating-constant ... -
02:13 AM Feature #2969: String#to_f が -h.hhh±pd を解釈できるように
- =begin
成瀬です。
(2010/03/24 23:34), Tadayoshi Funaba wrote:
>> to_i がデフォルトで prefix を見ないのは、0377 のような、
>> 0 詰めした数値文字列を、8 進数表記として解釈してしまうのを
>> 問題視したからだと思っています。
>>
>> 今回の to_f は to_i と異なり、このような意図に反した解釈をしやすい
>> パターンが無いので、やはり事情が異なると思います。... - 02:37 AM Revision 31bc607c (git): * test/ruby/test_dir_m17n.rb: HFS+ escapes invalid byte sequences of filenames.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:22 AM Bug #953 (Closed): 深い入れ子の配列の取り扱いで落ちる
- =begin
遠藤です。
> 以下のスクリプトを実行すると Segmentation fault で落ちました。
>
> $ cat ./nest.rb
> a = [0]
> 10000.times do
> a = [a]
> end
> p a
現在はもう落ちないようなので、close します。
rb_exec_recursive のあたりはたぶん結構いろいろ変わっているので、
何のおかげ... -
02:12 AM Bug #719: yaml not precise on some strings
- =begin
Hi Aaron,
What do you think about this ticket?
> require 'yaml'
> data1 = [{"foo"=>"\n", "bar"=>"baz\n \nbaz"}]
> data2 = YAML.load data1.to_yaml
> p data1, data2
>
> =>
> [{"foo"=>"\n", "bar"=>"baz\n \nb... -
02:03 AM Bug #2774 (Rejected): add explicit constraints for WONTFIX IO bug
- =begin
This ticket was rejected. These won't be fixed.
The current spec is explained in [ruby-core:28335]
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
02:03 AM Bug #2775 (Rejected): add explicit constraints for WONTFIX IO bug
- =begin
This ticket was rejected. These won't be fixed.
The current spec is explained in [ruby-core:28335]
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
01:39 AM Bug #2998: gets fails in mingw
- =begin
Thanks works well now.
-rp
=end
-
01:38 AM Bug #1421: Permission denied - ~/.ri
- =begin
Hi,
Kazuhiro, is this still reproduced?
If not, could you close the ticket?
--
Yusuke Endoh <mame@tsg.ne.jp>
=end
-
01:23 AM Bug #1393: Multiple assignment does not call to_a but to_ary
- =begin
Hi,
2009/4/21 Vincent Isambart <redmine@ruby-lang.org>:
> In Ruby 1.9, when Ruby is expecting an array and does not get one (for example in splat arguments), it calls the to_a method on the object.
> For example, if x is... -
12:55 AM Bug #1285 (Feedback): Fix Compiler Warnings - iseq and insns
- =begin
Hi, Charlie Savage
Could you tell me if this is still reproduced?
Perhaps, all type inconsistency has been fixed after you registered this
ticket, as long as I look your patch (but I did not actually check with
V... -
12:52 AM Bug #693: Thread#set_trace_func seems not to work
- =begin
Added patch should be applied, because it is so trivial.
If no one disagree with it, I'll commit it.
=end
-
12:20 AM Bug #947: Signal handler block is never called when the program is too short
- =begin
Hi,
2008/12/29 Yuki Sonoda <redmine@ruby-lang.org>:
> Bug #947: Signal handler block is never called when the program is too short
> http://redmine.ruby-lang.org/issues/show/947
>
> Author: Yuki Sonoda
> Status: Op... -
12:19 AM Feature #2012: Set event_flags on thread creation if hook exists
- =begin
Hi,
2010/1/7 Yusuke ENDOH <mame@tsg.ne.jp>:
> 2009/8/30 Mark Moseley <redmine@ruby-lang.org>:
>> In ruby-debug, when a user sets a breakpoint that ends up executed by a later-created thread, then nothing will happen.
I'...