Installing mysql2 gem for Ruby on Rails with Mac OSX 10.6
This command worked for me:
gem install mysql2 -- --srcdir=/usr/local/mysql/include
It seems that it cannot find the MySQL library. Have you installed MySQL?
Try installing it via homebrew:
brew install mysql
or install it via macports or fink or whatever you prefer.
Then try again with:
gem install mysql2