I had issues as well (on Mac OS X), and was just as frustrated that gem install mysql wasn't as simple as it used to be.
The short-sighted answer is that the mysql gem needs to build native extensions, and to do that, it needs some path information (specific to your system) about MySQL libraries. The most reliable way to got get that information is for you to provide it.
The larger answer is that this is a design bug in the gem system. When nearly every other gem installs with gem install foo, the system and the gem submitters need to provide users with some kind of instruction for important exceptional cases - even if it's just feedback with the error message that tells you that you must provide more information to install this gem, and what that information is.
A bit of googling around eventually got me to the answer, but got me a lot more instances of other people blindsided by a simple process that turned complex without warning.
