From: Stefan Lang Date: 2005-09-13T04:17:34+09:00 Subject: Re: Rio 0.3.4 On Sunday 11 September 2005 23:19, Jim Morris wrote: > I also see a similar problem with 0.3.4 but I installed it the old > fashioned way not using gem... (0.3.3 works fine BTW) > > > ruby t.rb > > /usr/local/lib/ruby/site_ruby/1.8/rio/ops/either.rb:110:in > `require': No such file toload -- Pathname (LoadError) The "pathname" library comes with Ruby. Perhaps rio was tested on Windows only, which ignores case in file names. Thus, on Windows both work: require 'pathname and require 'Pathname', but on Linux, only the former works (since Linux file systems are case sensitive). HTH, Stefan