The issue is that the MySQL gem builds native extensions and needs system-specific information about where to find certain libraries. You have to provide this on the command line.
Check out these instructionsthis page - the important bit (that worked for me, anyway) was:
sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
Of course, be sure to substitute the correct path for your own system.
Also, stick with running your gem install commands via sudo.
The bigger issue is that the gem software provides NO feedback regarding the fact that you can't just do gem install mysql like you do with every other gem (and indeed, used to be able to do with the MySQL gem).
