From: Bauduin Raphael Date: 2005-01-02T02:36:39+09:00 Subject: require net/ssh gem and korundum Hi, I've installed korundum(KDE bindings) manually and net/ssh as a gem (just upgraded rubygems to 0.8.4). Here are the require lines I have: require 'Korundum' require 'tailWindow' require 'sshtail' #generated with rbuic require 'rubygems' #generated with rbuic require 'net/ssh' Everything works as long as I don't require net/ssh. The last require gives me this error: /usr/local/lib/site_ruby/1.8/rubygems.rb:263:in `const_missing': uninitialized constant KDE::Config::CONFIG (NameError) from /usr/local/lib/site_ruby/1.8/rubygems.rb:263:in `default_dir' from /usr/local/lib/site_ruby/1.8/rubygems.rb:86:in `dir' from /usr/local/lib/site_ruby/1.8/rubygems.rb:248:in `set_paths' from /usr/local/lib/site_ruby/1.8/rubygems.rb:97:in `path' from /usr/local/lib/site_ruby/1.8/rubygems/loadpath_manager.rb:54:in `build_paths' from /usr/local/lib/site_ruby/1.8/rubygems/loadpath_manager.rb:68:in `search_gempath' from /usr/local/lib/site_ruby/1.8/rubygems/loadpath_manager.rb:4:in `require' from ./tail.rb:7 I can use net/ssh in another script, so its installation is fine. Is there a problem because I use a manually installed lib and a gem in the same script? Raph