I would like to install RUBYOPT=-r opensslonly for my gemsems that use Ruby 1.9.x. Ruby 1.8.x complains about an "illegal switch in RUBYOPT ..." if I have this kit worldwide.
RUBYOPT=-r openssl
Thank.
In ~/.rvm/hooks/after_use, put:
~/.rvm/hooks/after_use
if echo $rvm_ruby_version | grep -q '1.9'; then export RUBYOPT='-r openssl' else export RUBYOPT= fi