On Fri, 31 Mar 2006 03:41:24 +0900, "Tim Nordloh" <tnordloh / gmail.com> wrote: > None of this has actually done any good toward the source error: > > $ ri File > /usr/local/lib/ruby/1.8/yaml.rb:87: uninitialized constant > YAML::Syck::Resolver (NameError) > from /usr/local/lib/ruby/1.8/rdoc/ri/ri_descriptions.rb:1 > from /usr/local/lib/ruby/1.8/rdoc/ri/ri_reader.rb:1 > from /usr/local/lib/ruby/1.8/rdoc/ri/ri_driver.rb:5 > from /usr/local/bin/ri:43 I'm puzzled by this one -- for whatever reason, syck isn't getting loaded. I've not had this problem on HP-UX myself, and yaml.rb has a require 'yaml/syck' at the top, so I don't know why you're not getting an error from rather than getting this far. If you try: ruby -r 'yaml/syck' -e 'p YAML::Syck::Resolver' ..what happens? Also, this is 1.8.4, right? -mental