I have been trying to get this work for several hours without success.
I am trying to use Ruby Amazon AWS lib with requires use of the new
version of openssl.
My macbook tiger comes with built-in openssl 0.9.7i, so I installed
openssl 0.9.8l via macport.
When I issue the following command, it get to the new version:
$ openssl version
OpenSSL 0.9.8l 5 Nov 2009
But when I call openssl within ruby, it keeps looking at the older
version:
$ irb
irb(main):001:0> require ‘openssl’
=> true
irb(main):002:0> OpenSSL::OPENSSL_VERSION
=> “OpenSSL 0.9.7i 14 Oct 2005”
I have tried recompiling ruby, but it didn’t help.
Anyone knows how to fix the problem?
Thanks!
John