Forums | Admin

Discussion Forums: Hints and Tips

Start New Thread Start New Thread

 

By: shelly qi
RE: Installing RMagick on Mac OS 10.5.1 [ reply ]  
2012-09-12 02:28
http://sherryqi990.wordpress.com/2012/09/11/prom-gowns-combining-comfort-and-ease-along-with-kind/
http://www.blogster.com/minicar9999/prom-gowns-much-more-than-merely-an-easy-clothing
http://www.blogster.com/minicar9999/prom-gowns-tips-about-add-ons
http://www.bloguinhos.com/minicar9900/253112/
http://www.bloguinhos.com/minicar9900/253110/
http://yoogwa7.dhpreview.devhub.com/blog/963758-prom-gowns-manual-discover-the-prom-gown-which-highlights-your-own-silhouette/
http://yoogwa7.dhpreview.devhub.com/blog/963756-prom-gowns-last-year/
http://minicar9900.deviantart.com/journal/Prom-Gowns-ndash-How-to-locate-Ideal-Ensemble-326545210
http://minicar9900.deviantart.com/journal/Prom-Gowns-Moderate-Created-Simple-326545150
http://www.domeactreview.com/node/56825

By: Roger Pack
RE: Installing RMagick on Mac OS 10.5.1 [ reply ]  
2008-04-28 20:39
here's an error report on os x:


Rogers-little-PowerBook:mem roger$ sudo gem install rmagick

Building native extensions. This could take a while...

Successfully installed rmagick-2.3.0

1 gem installed

Rogers-little-PowerBook:mem roger$ irb -rubygems -r RMagick

/opt/local/lib/ruby/vendor_ruby/1.8/RMagick.rb:1200:TypeError:

superclass mismatch for class ImageList


this meant 'you have two versions of rmagick installed! One of them a legacy from a port installation!'

Rogers-little-PowerBook:mem roger$ irb

>> require 'rubygems'

=> false

require 'rmagick'

TypeError: superclass mismatch for class ImageList

from /opt/local/lib/ruby/vendor_ruby/1.8/rmagick.rb:1200

from

/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in

`gem_original_require'

from

/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in

`require'

from (irb):2

exit



meant



Rogers-little-PowerBook:mem roger$ sudo mv

/opt/local/lib/ruby/vendor_ruby/1.8/rmagick.rb

/opt/local/lib/ruby/vendor_ruby/1.8/rmagick_bad.rb:

Rogers-little-PowerBook:mem roger$ irb

require 'rmagick'

=> true





guess it gets installed by default by macport, either that

or a pre-existing port install of rmagick prohibits the gem

from working.



Note also that 'cannot find RMagick.so' might mean 'search

for rmagick.rb and change it from RMagick.so to

RMagick.bundle, or RMagick2.bundle' but I'm not sure. That

was a previous problem that magically disappeared somehow.


By: David Smiley
Installing RMagick on Mac OS 10.5.1 [ reply ]  
2007-12-20 13:33
I successfully installed rmagick on my Mac OS X v10.5.1 machine using fink for the native libraries. The steps I took were a modification of:
http://blog.internautdesign.com/tags/gem
I ended up doing just the following 3 commands and it worked:
%> sudo fink install ghostscript imagemagick imagemagick10-dev
%> export LIBRARY_PATH='/sw/lib'
%> sudo gem install rmagick

Notice I had fewer steps... they others seemed unnecessary and I was right. I tested the installation using your docs on installation verification to ensure I did it correctly.