From: Jim Weirich Date: 2006-03-15T13:03:39+09:00 Subject: Re: install rmagick in win32,but no work yang jdong wrote: > rmagick@gmail.com wrote: >> Did you set up the RubyGems environment? >> >> See http://docs.rubygems.org/read/chapter/3#page70 > > C:\Documents and Settings\yang>irb > irb(main):001:0> require 'rubygems' > => true > irb(main):002:0> require 'RMagick' > => false Require returning 'false' does not mean that it has failed. It just means that the library has been already loaded. If the RMagick gem does an autorequire on the RMagick file, then that file will be loaded during the activation of the RMagick gem, meaning that by the time your require finishes, the file is indeed loaded. -- -- Jim Weirich -- Posted via http://www.ruby-forum.com/.