I have a server with RVM installed on it.
Nginx was configured with Passenger to handle ruby 1.9.2 and Rails 3.
I am willing to install a rails 2 application with ruby 1.8.7.
I installed ruby 1.8.7 and install openssl by going to ruby 1.8.7 sources and compiling and installing the .so.
If I start irb and try to require 'openssl' the response if "true"
[root@server:/home/redmine/www/redmine-1.0.4/]#irb
irb(main):001:0> require 'openssl'
=> true
irb(main):002:0>
But If I try to start for exemple rake gems:install, here is the response.
rake gems:install
(in /home/webapps/redmine-1.0.4)
rake aborted!
no such file to load -- openssl
(See full trace by running task with --trace)
zsh: exit 1 rake gems:install
Is anybody has an idea ?
Thanks !