You are missing openssl there :)
Install openssl package
rvm pkg install openssl
Uninstall the Ruby installation you are using
rvm remove 2.0.0
And finally recompile Ruby with openssl
rvm install 2.0.0 --with-openssl-dir=$HOME/.rvm/usr
Now everything should work. Do not forget:
rvm use 2.0.0 --default
source share