Project

General

Profile

Activity

From 09/13/2012 to 09/19/2012

09/19/2012

11:47 PM Feature #7019: allow `private` and `protected` keywords to take blocks
Would need to accept array of those too (whether its a method or symbol) for things like:
~~~ruby
private attr_ac...
trans (Thomas Sawyer)
11:43 PM Feature #6669: A method like Hash#map but returns hash
> * mash
> Such a created word is not good.
I think when no other choices suffice one is left with two options, e...
trans (Thomas Sawyer)
04:15 PM Feature #6669: A method like Hash#map but returns hash
Please ignore my previous comment; I see that you want a new Hash rather than replacing the keys/values of the existi... david_macmahon (David MacMahon)
03:09 PM Feature #6669: A method like Hash#map but returns hash
What about #map! (or are bang methods frowned upon these days)? david_macmahon (David MacMahon)
02:30 PM Feature #6669: A method like Hash#map but returns hash
What about #remap
#select and #reject only change the number of k/v pairs and do not change the mapping.
Compared t...
ryenus (_ ryenus)
11:32 PM Bug #6441: IO.pipe on ENFILE
どこから mark されてるんだろうかと追跡してみたところ
mark_current_machine_context() の rb_gc_mark_locations() から、つまり machine stack からでした。
...
nagachika (Tomoyuki Chikanaga)
09:25 PM Bug #6441: IO.pipe on ENFILE
どうも IO.pipe で最後に開いた IO 2つは GC.start で手動で GC を実行しても回収されないみたいです。
$ ruby -ve 'GC.start;loop{IO.pipe.tap{|i|p i}.clea...
nagachika (Tomoyuki Chikanaga)
05:53 PM Bug #6441: IO.pipe on ENFILE
shyouhei (Shyouhei Urabe) wrote:
> authorNari (Narihiro Nakamura) wrote:
> > naruse (Yui NARUSE) wrote:
> > > 今の R...
authorNari (Narihiro Nakamura)
10:46 PM Bug #7038 (Closed): Array#zip に配列以外のオブジェクトを指定した場合の例外がわかり辛い
=begin
1.9 以降でArray#zip に配列以外のオブジェクトを指定した場合の例外が NoMethodError ではわかり辛いのではないかと思います。
$ ruby -ve 'p [1,2,3].zip(1)'...
sho-h (Sho Hashimoto)
10:23 PM Revision 7c4d0468 (git): * complex.c: Examples for Complex Documentation.
Patch by Robin Dupret.
Fixes #184 on github.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36993 b2dd03c8-39d...
zzak (zzak _)
10:17 PM Revision cca61daf (git): * ext/ripper/lib/ripper.rb: Documentation for Ripper.
+:void_stmt+ is meaningless
[Bug #6929] [ruby-core:47507]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36992...
zzak (zzak _)
10:07 PM Revision 0503756f (git): * lib/csv.rb (Object#CSV, Array#to_csv, String#parse_csv):
Examples and documentation for CSV.
[Bug #6880] [ruby-core:47218]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tru...
zzak (zzak _)
08:08 PM Bug #7037: float formatting inconsistently rounds half to even
Sorry, it's my bad.
Indeed, "half even" not "half up".
nobu (Nobuyoshi Nakada)
06:05 PM Bug #7037: float formatting inconsistently rounds half to even
I can't under stand what @nobu says so I did this myself.
@headius mixed two points.
* 1.15 for instance is not...
shyouhei (Shyouhei Urabe)
05:13 PM Bug #7037 (Closed): float formatting inconsistently rounds half to even
=begin
Just formats the value with full precision and "rounds half up" the next char.
(gdb) printf "%.17f\n", 1....
nobu (Nobuyoshi Nakada)
04:05 PM Bug #7037 (Closed): float formatting inconsistently rounds half to even
MRI does not appear to consistently round half to even. I'm not sure what rounding strategy this is, but it rounds xx... headius (Charles Nutter)
07:53 PM Feature #6668: Multiple assignment should not return an Array object
(2012/09/19 0:08), headius (Charles Nutter) wrote:
> This is an artifact of MRI's implementation, since multiple a...
ko1 (Koichi Sasada)
04:08 PM Feature #6668: Multiple assignment should not return an Array object
Ping! headius (Charles Nutter)
06:35 PM Bug #7031: Date::mjd_to_jd disappeared
thanks for your lecture.
foolish man who doesn't know details
make me irritated.
tadf (tadayoshi funaba)
01:36 PM Bug #7031: Date::mjd_to_jd disappeared
Well, what's done is done. One cannot put the toothpaste back in the tube. It looks like "wew" (William Webber, I p... david_macmahon (David MacMahon)
07:49 AM Bug #7031: Date::mjd_to_jd disappeared
the latest 1.8 documentation is by William Webber.
he wanted to describe nearly all even private.
he should have re...
tadf (tadayoshi funaba)
02:57 AM Bug #7031: Date::mjd_to_jd disappeared
Removing undocumented methods that have "escaped into the wild" is reasonable, but since these well documented method... david_macmahon (David MacMahon)
04:36 PM Feature #905: Add String.new(fixnum) to preallocate large buffer
Just a technical comment, not for the feature itself:
headius (Charles Nutter) wrote:
> to by ptr, realloc()...
shyouhei (Shyouhei Urabe)
04:17 PM Feature #905: Add String.new(fixnum) to preallocate large buffer
Trying to wake this beast up...
mame: I don't think we can say it would not help MRI without testing an implementa...
headius (Charles Nutter)
04:09 PM Feature #6648: Provide a standard API for retrieving all command-line flags passed to Ruby
ARGV is a special class; perhaps ARGV could have the methods? headius (Charles Nutter)
04:07 PM Bug #6994: yield plus splat unwraps too much
Ok, I accept the explanation. We will support the MRI behavior in JRuby. headius (Charles Nutter)
03:42 PM Revision f205ac49 (git): * 2012-09-20
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
03:42 PM Revision abeedb08 (git): array.c, enum.c: TypeError in zip
* array.c (take_items), enum.c (enum_zip): raise TypeError at
non-enumerable objects, not NoMethodError. [ruby-dev...
nobu (Nobuyoshi Nakada)
02:49 PM Revision b70f99d1 (git): * 2012-09-19
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
02:49 PM Revision 18181542 (git): suppress warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e naruse (Yui NARUSE)

09/18/2012

11:47 PM Feature #7019: allow `private` and `protected` keywords to take blocks
headius (Charles Nutter) wrote:
> +1 for "`private def foo`". I have never seen a good justification for why visibil...
luislavena (Luis Lavena)
11:38 PM Feature #7019: allow `private` and `protected` keywords to take blocks
+1 for "`private def foo`". I have never seen a good justification for why visibility is better as a value on the cur... headius (Charles Nutter)
11:50 AM Feature #7019: allow `private` and `protected` keywords to take blocks
I don't know why you would expect this to work, `private`, `public`, etc. are methods on `Module` and your context is... drbrain (Eric Hodel)
04:36 AM Feature #7019: allow `private` and `protected` keywords to take blocks
Here is a usecase i have made up. The following does not work now:
~~~ruby
class C
def f
def g
#
...
alexeymuranov (Alexey Muranov)
11:04 PM Bug #7036: Compiling extensions with Ruby in a path with spaces
usa (Usaku NAKAMURA) wrote:
> Building something with the path containing spaces is not recommended, IMO.
> (see th...
luislavena (Luis Lavena)
03:32 PM Bug #7036 (Assigned): Compiling extensions with Ruby in a path with spaces
Building something with the path containing spaces is not recommended, IMO.
(see the end of win32/README.win32)
O...
usa (Usaku NAKAMURA)
07:18 AM Bug #7036 (Closed): Compiling extensions with Ruby in a path with spaces
=begin
Hello,
This has been reported several times to RubyInstaller: inability to install gems when Ruby has been...
luislavena (Luis Lavena)
08:24 PM Bug #7031 (Rejected): Date::mjd_to_jd disappeared
is just for internal use and debugging.
try the following code.
class Date
MJD_EPOCH_IN_CJD = 2400001
def...
tadf (tadayoshi funaba)
03:23 PM Feature #5481: Gemifying Ruby standard library
NaHi, could you tell us status of this work?
If you doesn't have a time to implement it, I'll implement it.
NOTE:...
kou (Kouhei Sutou)
10:18 AM Bug #6441: IO.pipe on ENFILE
authorNari (Narihiro Nakamura) wrote:
> naruse (Yui NARUSE) wrote:
> > 今の Ruby は open(2) などで、errno=ENFILE が発生した場合、
...
shyouhei (Shyouhei Urabe)
08:52 AM Revision aab70ee3 (git): * 2012-09-18
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
08:52 AM Revision e8854f8c (git): * ext/openssl/ossl_ssl.c (ossl_sslctx_attrs): add npn_select_db to
suppress warning: instance variable @npn_select_cb not initialized
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk...
naruse (Yui NARUSE)
04:06 AM Feature #7035: defined? should return cached, frozen strings
> I like the idea.
I like it too.
kosaki (Motohiro KOSAKI)
04:00 AM Feature #7035: defined? should return cached, frozen strings
=begin
I like the idea.
Considering recent changes like (({respond_to?})) and protected methods, I think this cha...
luislavena (Luis Lavena)
03:22 AM Feature #7035: defined? should return cached, frozen strings
IMO, I think it should be fine for `defined?` to return a symbol in Ruby 2.0.0, if that really going to fix the alloc... sikachu (Prem Sichanugrist)
02:57 AM Feature #7035 (Closed): defined? should return cached, frozen strings
Yehuda and I have been looking into allocation rates in Rails under both MRI and JRuby, and one of the big standouts ... headius (Charles Nutter)

09/17/2012

11:24 PM Feature #7019: allow `private` and `protected` keywords to take blocks
What about
~~~ruby
privately do
end
~~~
? :)
(I understand that a good reason is needed to add a new keyword).
alexeymuranov (Alexey Muranov)
10:13 PM Feature #7019: allow `private` and `protected` keywords to take blocks
I know you like blocks but this proposal doesn't make sense to me because `public`/`private`/`protected` are declarat... shyouhei (Shyouhei Urabe)
07:42 AM Bug #7018 (Rejected): unexpected behavior that constant is overridden and redefined
Ruby 1.9.2's normal maintenance is finished.
https://bugs.ruby-lang.org/projects/ruby/wiki/ReleaseEngineering
naruse (Yui NARUSE)
03:03 AM Bug #7031: Date::mjd_to_jd disappeared
FWIW, they were part of 1.8.7:
http://www.ruby-doc.org/stdlib-1.8.7/libdoc/date/rdoc/Date.html#method-c-mjd_to_j...
david_macmahon (David MacMahon)

09/16/2012

10:57 PM Feature #7019: allow `private` and `protected` keywords to take blocks
I've often wondered about being able to use:
~~~ruby
private def f
#
end
~~~
I think it's true that the p...
trans (Thomas Sawyer)
04:08 PM Bug #7032 (Closed): TestSetTraceFuncの実行に失敗する
=begin
辻本です。
以下のようにテストを実行すると、まれにTestSetTraceFuncの実行に失敗することがあります。
$ make TESTS='-vq -j1 objspace/test_objspace...
ktsj (Kazuki Tsujimoto)
02:42 PM Bug #7031 (Assigned): Date::mjd_to_jd disappeared
I believe these were not API methods
tadf, can you confirm?
drbrain (Eric Hodel)
02:40 PM Bug #7031 (Rejected): Date::mjd_to_jd disappeared
I've migrated almost all of my Ruby code from Ruby 1.8 to 1.9 (finally!). Most things went pretty smoothly, but I r... Anonymous
02:38 PM Bug #7029 (Assigned): yaml#load_file too slow under Psych
Please note that syck no longer exists in ruby trunk, so this benchmark cannot run drbrain (Eric Hodel)
06:31 AM Bug #7029: yaml#load_file too slow under Psych
Please ignore the previous test file. I've come up with a much better test. This is indicative of the real-world use-... mattneub (Matt Neuburg)
03:16 AM Bug #7029 (Closed): yaml#load_file too slow under Psych
Unzip attached folder and run test.rb. Remember time output. Now uncomment the ENGINE line so we switch from Psych to... mattneub (Matt Neuburg)
11:39 AM Bug #6764 (Closed): IO#read(size, buf) causes can't set length of shared string in trunk (2.0.0dev)
This issue was solved with changeset r36980.
Hiroshi, thank you for reporting this issue.
Your contribution to Ruby i...
nobu (Nobuyoshi Nakada)
09:24 AM Revision 315cbef8 (git): file.c: reduce xmalloc
* file.c (rb_readlink): read symlink in the result string directly.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trun...
nobu (Nobuyoshi Nakada)
09:09 AM Revision f3dd7c49 (git): parse.y: suppress warnings
* parse.y (id_type): suppress warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36983 b2dd03c8-39d4-4d8f-9...
nobu (Nobuyoshi Nakada)
08:47 AM Revision 32d416db (git): * tool/change_maker.rb: Update svn detection for subversion 1.7's
single .svn directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
drbrain (Eric Hodel)
08:41 AM Revision c278c846 (git): configure.in: warnflags
* configure.in (warnflags): needs to check configuration with strict
options. [ruby-dev:46105]
git-svn-id: svn+ss...
nobu (Nobuyoshi Nakada)
08:16 AM Feature #7030 (Closed): Add .editorconfig to the source repository
This issue was solved with changeset r36976.
Hong, thank you for reporting this issue.
Your contribution to Ruby is g...
nobu (Nobuyoshi Nakada)
07:08 AM Feature #7030 (Closed): Add .editorconfig to the source repository
EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The Ed... xuhdev (Hong Xu)
02:39 AM Revision 59383b1f (git): io.c: io_set_read_length
* io.c (io_set_read_length): if the read length equals to the buffer
string size then nothing to do. or ensure the...
nobu (Nobuyoshi Nakada)
01:22 AM Feature #7028 (Closed): Please Repatch FileUtils.compare_stream
I found faster FileUtils.compare_stream accepted in [Feature #5337] was lost since r34669.
https://bugs.ruby-lang.or...
Glass_saga (Masaki Matsushita)
12:18 AM Bug #7027 (Closed): Tempfile#inspect is Confusing
I think Tempfile#inspect is really confusing.
It says Tempfile object is a File, but it is not a File object.
% i...
Glass_saga (Masaki Matsushita)

09/15/2012

11:58 PM Revision 4a906510 (git): configure.in: strict warnflags
* configure.in (strict_warnflags): separate strict flags from
warnflags only for core. [ruby-dev:46105]
git-svn-...
nobu (Nobuyoshi Nakada)
11:52 PM Revision 057b1986 (git): configure.in: aix warnflags
* configure.in: append -qinfo option not overriding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36978 b2dd03...
nobu (Nobuyoshi Nakada)
11:16 PM Revision 310cbde4 (git): * 2012-09-16
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
11:16 PM Revision fdd8d5ba (git): .editorconfig: new
* .editorconfig: add. [ruby-core:47548] [Feature #7030]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36976 b2d...
nobu (Nobuyoshi Nakada)
09:11 PM Bug #7024: 90 * 1.1 => 99.00000000000001
Julien, try
(90 * Rational(11, 10)).to_f
or
(90 * '1.1'.to_r).to_f
or
(90 * 1.1.rationalize).to_f
alexeymuranov (Alexey Muranov)
07:05 AM Bug #7024 (Rejected): 90 * 1.1 => 99.00000000000001
This is expected from floating point calculations; you'll get this result in other languages too.
Checkout http://...
marcandre (Marc-Andre Lafortune)
05:43 AM Bug #7024 (Rejected): 90 * 1.1 => 99.00000000000001
$ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [i686-linux]
$ irb
1.9.3p194 :001 > 90*1.1
=> 99.0000000000...
Bahanix (Julien -)
09:04 PM Bug #6764: IO#read(size, buf) causes can't set length of shared string in trunk (2.0.0dev)
I see this bug with rubyzip. I tried to create a patch. h.shirosaki (Hiroshi Shirosaki)
03:53 PM Bug #6799: Digest::*.hexdigest returns an ASCII-8BIT String
On Fri, Sep 14, 2012 at 07:35:46PM +0900, Eregon (Benoit Daloze) wrote:
>
> Issue #6799 has been updated by Erego...
Anonymous
01:12 PM Bug #6441: IO.pipe on ENFILE
すみません、この問題をよく理解できてないので何点か質問させてください。
GC側をどのように直せばいいかいまいちわかっておらず、悩んでいます…。
naruse (Yui NARUSE) wrote:
> 今の Ruby は o...
authorNari (Narihiro Nakamura)
12:12 PM Feature #6812 (Closed): Refactor gc.c
だいぶん前になりますが、gc.cを少し整理してみたのでこのチケットは閉じておきます。 authorNari (Narihiro Nakamura)
09:26 AM Revision 47b642bd (git): parse.y: new_attr_op_assign
* parse.y (new_attr_op_assign): extract.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36975 b2dd03c8-39d4-4d8f-...
nobu (Nobuyoshi Nakada)
09:26 AM Revision 2bfc48dd (git): parse.y: new_op_assign
* parse.y (new_op_assign): extract.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36974 b2dd03c8-39d4-4d8f-98ff-...
nobu (Nobuyoshi Nakada)
09:26 AM Revision 66d03f5f (git): parse.y: switch
* parse.y (gettable_gen, assignable_gen): rewrite sequential if-else
as switch.
git-svn-id: svn+ssh://ci.ruby-lang...
nobu (Nobuyoshi Nakada)
09:26 AM Revision b520b218 (git): parse.y: static table
* parse.y (lex_state_name): use static table.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36972 b2dd03c8-39d4-...
nobu (Nobuyoshi Nakada)
09:26 AM Revision 356c0857 (git): test_parse.rb: eval locations
* test/ruby/test_parse.rb: set eval locations.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36971 b2dd03c8-39d4...
nobu (Nobuyoshi Nakada)
09:23 AM Feature #7025 (Closed): way to wait for closing with IO.popen object
=begin
Process.wait(popened_io.pid)
=end
nobu (Nobuyoshi Nakada)
08:46 AM Feature #7025 (Closed): way to wait for closing with IO.popen object
Hello.
I noticed that it seems, if you do:
IO.popen("something", "w")
there's currently no way (without using a ...
rogerdpack (Roger Pack)
03:21 AM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
> Ok, now callback is wrapped to rb_ensure inside of rb_mutex_sleep_forever and rb_mutex_wait_for.
Unfortunately, ...
kosaki (Motohiro KOSAKI)
03:13 AM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
> I cann't understand, why "main thread shouldn't take a mutex"? In real application it could be very other thread, n... kosaki (Motohiro KOSAKI)
02:26 AM Bug #7005 (Closed): NKF: CP50221 から CP932 に変換できない文字がある
This issue was solved with changeset r36968.
Masahiro, thank you for reporting this issue.
Your contribution to Ruby ...
naruse (Yui NARUSE)
01:13 AM Feature #7022: add event hook for garbage collection
hmm...correct me if I'm wrong (I'm trying to maintain the ruby-prof gem here) will the dtrace probes in #2565 help me... rogerdpack (Roger Pack)

09/14/2012

07:50 PM Bug #7008: rake is crashing when trying to compile ffi gem
To set the environment variable PKG_CONFIG_PATH when building ruby from source might help.
For example, export PKG_C...
ngoto (Naohisa Goto)
02:43 AM Bug #7008: rake is crashing when trying to compile ffi gem
I have indeed 0.9.7 in base system and 1.0.0 built from sources, installed in different prefixes. Is there a way of b... drookie (Eugene M. Zheganin Eugene M. Zheganin)
07:35 PM Bug #6799: Digest::*.hexdigest returns an ASCII-8BIT String
@Aaron: Maybe String#unpack should be fixed instead to return an ASCII string for the 'H', 'h', 'B' and 'b' directive... Eregon (Benoit Daloze)
06:01 PM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
Good day, Kosaki-san.
Ok, now callback is wrapped to rb_ensure inside of rb_mutex_sleep_forever and rb_mutex_wait_...
funny_falcon (Yura Sokolov)
04:48 PM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
> + serialize.wait{ thread.run }
This could be
+ serialize.wait{ }
Test is failing as well, so that, step 4 ...
funny_falcon (Yura Sokolov)
03:36 AM Bug #6174 (Rejected): Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)

I've reviewed your code. Unofrtunately your testcase is not correct.
+ def test_condvar_wait_timeout
+ seri...
kosaki (Motohiro KOSAKI)
05:34 PM Bug #4911: timer_thread_function() が thead unsafe
I've made a patch.
https://github.com/ruby/ruby/pull/182
ko1, could you please review it?
kosaki (Motohiro KOSAKI)
05:29 PM Revision bcd7b81e (git): * pack.c: fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e Eregon (Benoit Daloze)
05:29 PM Revision 429c856e (git): * configure.in: fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e Eregon (Benoit Daloze)
05:26 PM Revision 3d42b235 (git): * ext/nkf/nkf-utf8/nkf.c: Merge upstream: 50a383c84.
[ruby-dev:46128] [Bug #7005]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36968 b2dd03c8-39d4-4d8f-98ff-823fe69...
naruse (Yui NARUSE)
05:15 PM Feature #7022: add event hook for garbage collection
You can't add an event hook for the start of garbage collection. Ruby is out of space for creating the necessary obje... drbrain (Eric Hodel)
03:32 PM Feature #7022 (Closed): add event hook for garbage collection
It would be useful for profilers to have more insight into garbage collection. Feature request: add event hooks for ... rogerdpack (Roger Pack)
04:32 PM Feature #3346: __DIR__ revisted
definitely recommend full path to avoid possible confusion, like we used to have with 1.8.x not using the full path f... rogerdpack (Roger Pack)
04:07 PM Revision 4649f218 (git): * 2012-09-15
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
04:07 PM Revision 1aab4196 (git): * ext/nkf/nkf.c (rb_nkf_convert): suppress warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e naruse (Yui NARUSE)
10:30 AM Bug #7021: WEBrick::HTTPUtils.parse_header "normalizing" white space of cookie values.
I forgot to add this in the description here is the style of cookie that is giving me issues:
Cookie: testcookie=`...
boris317 (shawn adams)
10:15 AM Bug #7021 (Closed): WEBrick::HTTPUtils.parse_header "normalizing" white space of cookie values.
parse_header calls value.gsub!(/\s+/, " ") on ALL header values. I am using a web framework that runs on WEBrick as a... boris317 (shawn adams)
09:23 AM Bug #6929: Documentation for Ripper
As a documentation committer, feel free to commit documentation without making tickets unless you would like to get a... drbrain (Eric Hodel)
03:29 AM Bug #6929: Documentation for Ripper
Hello,

On Thu, Sep 13, 2012 at 2:25 PM, Eregon (Benoit Daloze)
<[email protected]> wrote:
> I would say...
zzak (zzak _)
03:25 AM Bug #6929: Documentation for Ripper
zzak (Zachary Scott) wrote:
> Should I setup a new ticket for this?
I would say go ahead and commit it, as it's j...
Eregon (Benoit Daloze)
04:08 AM Bug #6872 (Closed): Array does not specify how it determines uniqueness of values
This issue was solved with changeset r36965.
Andrew, thank you for reporting this issue.
Your contribution to Ruby is...
zzak (zzak _)
03:32 AM Bug #6908 (Closed): Update Documentation for Select and reject
This issue was solved with changeset r36964.
Jeff, thank you for reporting this issue.
Your contribution to Ruby is g...
zzak (zzak _)
03:10 AM Feature #6572 (Closed): Array#index return array of indexes
Closing this, duplicate of [Bug #6596]
See github pull request for further background: https://github.com/ruby/rub...
zzak (zzak _)

09/13/2012

11:53 PM Bug #6929: Documentation for Ripper
Should I setup a new ticket for this?

On Thu, Sep 13, 2012 at 10:21 AM, Eregon (Benoit Daloze)
<redmine@ruby-...
zzak (zzak _)
11:21 PM Bug #6929: Documentation for Ripper
Yes, that sounds good. Eregon (Benoit Daloze)
10:25 PM Bug #6929: Documentation for Ripper
=begin
Eregon: Thank you for the feedback! Would you prefer the following instead?
(({# In our case, we're simply...
zzak (zzak _)
07:55 PM Bug #6929: Documentation for Ripper
zzak: Good work!
Just a little note, when you say:
"# In our case, we're simply returning a String, so next we ha...
Eregon (Benoit Daloze)
08:04 AM Bug #6929 (Closed): Documentation for Ripper
This issue was solved with changeset r36954.
Zachary, thank you for reporting this issue.
Your contribution to Ruby i...
zzak (zzak _)
10:42 PM Bug #6964 (Closed): Documentation for Shellwords
zzak (zzak _)
08:25 AM Bug #6964: Documentation for Shellwords
Resolved by changeset r36956 zzak (zzak _)
10:01 PM Bug #6990 (Closed): test_s_random_bytes_without_openssl error on Windows x64
This issue was solved with changeset r36961.
Hiroshi, thank you for reporting this issue.
Your contribution to Ruby i...
Anonymous
09:59 PM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
=begin
Language of FormatMessage seems not affected by console code page.
Test using locale:
msg[0, len].force_...
h.shirosaki (Hiroshi Shirosaki)
01:10 AM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
Thank you Usa,
Hiroshi, leaving to you to commit.
luislavena (Luis Lavena)
08:08 PM Bug #6033 (Third Party's Issue): Digest issue in 1.9.3
Thank you for feedback.
So this seems third party's issue.
naruse (Yui NARUSE)
07:51 PM Bug #6033: Digest issue in 1.9.3
I'm experiencing the same issue, Mac OS 10.8.1, RVM, Ruby 1.9.3-p194
Also fixed using @annotunzdy's approach
onionion (dan de havilland)
07:08 PM Revision 00fb59f1 (git): * array.c (rb_ary_diff, rb_ary_uniq):
Enhance documentation for array uniqueness
Based on a patch by Robin Dupret
[Bug #6872] [ruby-core:47209]
git-s...
zzak (zzak _)
06:32 PM Revision 1ae1b85e (git): * array.c (rb_ary_select):
Update documentation for Array#select
* enum.c (enum_find_all, enum_reject):
Update documentation for Enumerable#fi...
zzak (zzak _)
04:02 PM Feature #7019 (Rejected): allow `private` and `protected` keywords to take blocks
I like to indent my private methods one level deeper, but this indentation is inconsistent with the syntax:
~~~rub...
alexeymuranov (Alexey Muranov)
03:24 PM Revision 7a0d7e74 (git): * 2012-09-14
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
03:24 PM Revision b1228cae (git): * signal.c (rb_f_kill):
Update documentation for Process.kill to reflect kill(2)
Patch by Richo Healey
git-svn-id: svn+ssh://ci.ruby-lang...
zzak (zzak _)
01:18 PM Bug #7018 (Rejected): unexpected behavior that constant is overridden and redefined
module Foo
module Bar
end
end
include Foo
m = Bar
#Bar expected being opened, instead, it is overridd...
qianthinking (Leon Li)
01:01 PM Revision 3207af4c (git): lib/securerandom.rb: fix errors on Windows
* lib/securerandom.rb (SecureRandom.random_bytes):
Use 64bit value as pointer for Windows x64 to fix SystemCallErro...
h.shirosaki (Hiroshi Shirosaki)
12:30 PM Bug #7008: rake is crashing when trying to compile ffi gem
> Reading libcrypto.so.0.9.7
> Reading libcrypto_extra.so.0.9.7
> Reading digest.so
> Reading openssl.so
> Readin...
ngoto (Naohisa Goto)
08:00 AM Bug #7008: rake is crashing when trying to compile ffi gem
What version of OpenSSL are you using? drbrain (Eric Hodel)
03:44 AM Bug #7008: rake is crashing when trying to compile ffi gem
I got more interesting bt with SIGSEGV removed from signal.c:
# dbx -f /usr/local/ruby-1.9.3/bin/ruby core
For in...
drookie (Eugene M. Zheganin Eugene M. Zheganin)
03:25 AM Bug #7008: rake is crashing when trying to compile ffi gem
I even got a backtrace. But I have no idea why it's so small and uninteresting:
# dbx -f /usr/local/ruby-1.9.3/bin...
drookie (Eugene M. Zheganin Eugene M. Zheganin)
11:25 AM Bug #6996 (Closed): Documentation for OptionParser includes an email adress which is not deliverable
This issue was solved with changeset r36960.
Eike, thank you for reporting this issue.
Your contribution to Ruby is g...
zzak (zzak _)
11:22 AM Bug #6909 (Closed): Documentation for XMLRPC
This issue was solved with changeset r36958.
Zachary, thank you for reporting this issue.
Your contribution to Ruby i...
zzak (zzak _)
07:28 AM Feature #7006: Add Enumerable#grouped_in as a each_slice without the block
Ah, okay, thank you, didn't notice before :P rosenfeld (Rodrigo Rosenfeld Rosas)
02:25 AM Revision 92300037 (git): * lib/optparse.rb: Remove unreachable email address from documentation
[Bug #6996] [ruby-core:47459]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36960 b2dd03c8-39d4-4d8f-98ff-823fe...
zzak (zzak _)
02:24 AM Revision fc7a96e2 (git): * properties.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
02:22 AM Revision 1df7862b (git): * lib/xmlrpc.rb: Documentation for XMLRPC
* lib/xmlrpc/datetime.rb: ditto.
* lib/xmlrpc/parser.rb: ditto.
* lib/xmlrpc/client.rb: ditto.
* lib/xmlrpc/utils.rb:...
zzak (zzak _)
01:22 AM Revision d11ef850 (git): configure.in: no PIE on Haiku
* configure.in: Don't use PIE on Haiku because loader support is not
enough.
git-svn-id: svn+ssh://ci.ruby-lang.or...
nobu (Nobuyoshi Nakada)
 

Also available in: Atom