[#70252] Re: [ruby-cvs:58640] nobu:r51492 (trunk): node.c: NODE_ALLOCA for ALLOCV — Eric Wong <normalperson@...>
Besides possible backwards compatibility, can we drop volatile
3 messages
2015/08/05
[#70257] [Ruby trunk - Feature #11420] [Open] Introduce ID key table into MRI — ko1@...
Issue #11420 has been reported by Koichi Sasada.
11 messages
2015/08/06
[#70337] Re: [Ruby trunk - Feature #11420] [Open] Introduce ID key table into MRI
— Eric Wong <normalperson@...>
2015/08/11
Nice. Thank you guys for looking into this.
[#70349] Re: [Ruby trunk - Feature #11420] [Open] Introduce ID key table into MRI
— Eric Wong <normalperson@...>
2015/08/12
Btw, did you consider using flexible array to avoid extra malloc
[#70355] Re: [Ruby trunk - Feature #11420] [Open] Introduce ID key table into MRI
— Юрий Соколов <funny.falcon@...>
2015/08/12
I thought to suggest to embed hash_id_table directly into places when it is
[#70356] Re: [Ruby trunk - Feature #11420] [Open] Introduce ID key table into MRI
— SASADA Koichi <ko1@...>
2015/08/12
On 2015/08/13 4:29, Юрий Соколов wrote:
[#70358] Re: [Ruby trunk - Feature #11420] [Open] Introduce ID key table into MRI
— Eric Wong <normalperson@...>
2015/08/12
SASADA Koichi <ko1@atdot.net> wrote:
[#70509] [Ruby trunk - Misc #11276] [RFC] compile.c: convert to use ccan/list — ko1@...
Issue #11276 has been updated by Koichi Sasada.
3 messages
2015/08/21
[#70639] the undefined behavior of an iterator if it is modified inside of the block to which it yields — Daniel Doubrovkine <dblock@...>
(this is my first time e-mailing list list, so apologies for any misstep :)
4 messages
2015/08/31
[ruby-core:70588] [Ruby trunk - Bug #11472] [Assigned] Some default gems are not installed if GEM_HOME is set during Ruby installation
From:
shibata.hiroshi@...
Date:
2015-08-25 12:11:00 UTC
List:
ruby-core #70588
Issue #11472 has been updated by Hiroshi SHIBATA. Status changed from Open to Assigned Assignee set to Hiroshi SHIBATA ---------------------------------------- Bug #11472: Some default gems are not installed if GEM_HOME is set during R= uby installation https://bugs.ruby-lang.org/issues/11472#change-53994 * Author: Vladimir Andrijevik * Status: Assigned * Priority: Normal * Assignee: Hiroshi SHIBATA * ruby -v: ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- As of 2.2.3, the issue which I believe was fixed with [this commit](https:/= /github.com/ruby/ruby/commit/ec171c45975b525bbe5d63b92f1521622aa05394) seem= s to be back: `minitest`, `test-unit`, and `power_assert` are not installed= if `GEM_HOME` is set when building Ruby. ~~~ $ env | grep GEM GEM_HOME=3D/Users/vladimir/ruby/default/gems GEM_PATH=3D/Users/vladimir/ruby/default/gems $ ruby-build 2.2.3 ~/ruby/2.2.3 $ ruby -v ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14] $ gem list *** LOCAL GEMS *** bigdecimal (1.2.6) io-console (0.4.3) json (1.8.1) psych (2.0.8) rake (10.4.2) rdoc (4.2.0) ~~~ Doing the exact same installation, but making sure that `GEM_HOME` and `GEM= _PATH` are not set, yields: ~~~ $ unset GEM_HOME $ unset GEM_PATH $ ruby-build 2.2.3 ~/ruby/2.2.3 $ ruby -v ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14] $ gem list *** LOCAL GEMS *** bigdecimal (1.2.6) io-console (0.4.3) json (1.8.1) minitest (5.4.3) power_assert (0.2.2) psych (2.0.8) rake (10.4.2) rdoc (4.2.0) test-unit (3.0.8) ~~~ I do not observe this behavior with Ruby 2.2.2, so I believe it is a regres= sion introduced in 2.2.3. Thank you for your consideration, and please let = me know if I did something wrong =E2=80=93 this is my first time reporting = an issue here. --=20 https://bugs.ruby-lang.org/