From: Erik Veenstra Date: 2005-10-04T21:41:48+09:00 Subject: Re: 'require' to fill $" with long names? > > I came up with this solution (see below). Just redefine > > require before executing the application and $" will be > > filled with the full names of the library files. Seems to > > work.... > > 1.9 does so. Quick check... Well, uh, just partly. It does expand all pathes, except for enumerator.so. Where does enumerator.so come from? Why isn't it a full path? Running on Cygwin on XP. gegroet, Erik V. - http://www.erikveen.dds.nl/ ---------------------------------------------------------------- $ ./ruby.exe -v ruby 1.9.0 (2005-10-04) [i386-cygwin] $ ./ruby.exe -e 'p $"' ["enumerator.so"] $ ./ruby.exe -r rbconfig -e 'p $"' ["enumerator.so", "/scratch/snapshot/ruby/rbconfig.rb"] ----------------------------------------------------------------