Recommend
If you like my work with RVM, please recommend me *with a comment as to why you recommend me* on
Working With Rails – Thank You!
IRC
I am 'wayneeseguin' in #rvm on irc.freenode.net
If I do not respond right away, leave a message and I'll respond or leave you a memo when I am around.
Sponsors
$ rvm help # Documentation Index

Quick fix

Remove all the manually installed packages:

$ rm -rf $rvm_path/usr
Find the requirements (follow the instructions):
$ rvm requirements
Reinstall ruby:
$ rvm reinstall 1.9.3

Iconv

require "iconv" # => false ?!

If you have issues with iconv not being available in ruby / irb please try install the ruby you want with the procedure explained below.

$ rvm pkg install iconv
$ rvm reinstall 1.9.2 --with-iconv-dir=$rvm_path/usr

This effectively installs a fresh copy of iconv, sandboxed to the ~/.rvm/usr directory, and tells ruby to use it during the compile.

In case of compilation problems try:

$ rvm --skip-autoreconf pkg install iconv

RVM Documentation Index