I got the same problem.
sudo apt-get install git curl -y
installed the version of curl that don't support ssl, so you need to uninstall it using
sudo apt-get remove curl
then install curl by downloading the latest package from here http://packages.ubuntu.com/natty/curl (for natty), use this link [curl_7.21.3.orig.tar.gz],
tar -xvzf curl_7.21.3.orig.tar.gz
cd curl_7.21.3
./configure && make
check for errors, and if all fine type
sudo make install
now ssl is working, so you can install rvm simply using
curl -L https://get.rvm.io | bash