Instale o gem mysql2 com MySQL instalado com Homebrew

Sempre recebo um erro ao executar a instalação do pacote com esta gema adicionada ao Gemfile.

gem "mysql2", "0.3.11"

O erro é parecido com este:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

/Users/fousa/.rvm/rubies/ruby-1.9.2-p320/bin/ruby extconf.rb
checking
for rb_thread_blocking_region()... yes
checking
for rb_wait_for_single_fd()... no

...

An error occurred while installing mysql2 (0.2.18), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.2.18'` succeeds before bundling.

Mas rodar gem install mysql2 -v ‘0.2.18’ não parece funcionar … Bem, o comando a seguir sim, apenas adicione alguns parâmetros homebrew .

gem install mysql2 -v '0.2.18' -- --with-mysql-lib=/usr/local/Cellar/mysql/5.5.19/lib --with-mysql-dir=/usr/local/Cellar/mysql/5.5.19 --with-mysql-config=/usr/local/Cellar/mysql/5.5.19/bin/mysql_config --with-mysql-include=/usr/local/Cellar/mysql/5.5.19/include

Não se esqueça de passar os diretórios Homebrew corretos.