Ruby 1.9 and RMagick

The only application keeping me from going completely to Ruby 1.9 (from
1.8) is RMagick. Can RMagick be used on Windows with Ruby 1.9? If so,
what do I need to do to install it? There isn’t an RMagick Gem yet for
Ruby 1.9 that I can find.

–Alex DeCaria

Alex DeCaria wrote:

The only application keeping me from going completely to Ruby 1.9 (from
1.8) is RMagick. Can RMagick be used on Windows with Ruby 1.9? If so,
what do I need to do to install it? There isn’t an RMagick Gem yet for
Ruby 1.9 that I can find.

source is the only way.

some clues:

http://www.waydotnet.com/blog/2010/02/rmagick-on-ruby-1-9-1-i386-mingw32-work-d

and

"- install using official ImageMagick installer for Windows

  • set DFImageMagick environment variable to where I installed it
  • set PATH=%DFImageMagick%;%PATH% (if you don’t already have it in PATH)
  • set CPATH=%DFImageMagick%\include;%CPATH%
  • set LIBRARY_PATH=%DFImageMagick%\lib;%LIBRARY_PATH%
  • gem install rmagick
    "

from

http://groups.google.com/group/rubyinstaller/browse_thread/thread/c837c4438d91208b/e47b12235b88361b?lnk=gst&q=rmagick#e47b12235b88361b

http://betterlogic.com/roger/?p=2186