Actions
Bug #1030
closedPath to enumerator.so in $LOADED_PATH isn't expanded
Bug #1030:
Path to enumerator.so in $LOADED_PATH isn't expanded
Description
=begin
According to NEWS file all path in $LOADED_PATH should be expanded but it looks like they aren't (at least for one ruby extension).
$ ruby1.9.1 -v && ruby1.9.1 -e 'p $".find_all {|p| p !~ /^//}'
ruby 1.9.1p0 (2009-01-20 revision 21697) [x86_64-linux]
["enumerator.so"]
$ ruby-trunk -v && ruby-trunk -e 'p $".find_all {|p| p !~ /^//}'
ruby 1.9.1p5000 (2009-01-20 trunk 21699) [x86_64-linux]
["enumerator.so"]
=end
Actions