Somewhere between happy and total f**king wreck
Posts tagged gem
Building libxml-ruby gem on Ubuntu Hardy
Jul 14th
Source: Tibs’ Blog
I had been having a lot of trouble using libxml-ruby on Ubuntu Hardy for a hobby project of mine. Any task including libxml calls via require 'xml/libxml' fails with the message:
no such file to load -- libxml_so
Installing id3lib-ruby gem on OSX Leopard with id3lib from MacPorts
Jul 8th
Source: John Wulff and comments
sudo port install id3lib sudo ARCHFLAGS="-arch i386" gem install id3lib-ruby -- --build-flags --with-opt-dir=/opt/local
MySQL ruby gem with MacPorts MySQL
Jun 13th
sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-include=/opt/local/include/mysql5 --with-mysql-lib=/opt/local/lib/mysql5 --with-mysql-config=/opt/local/lib/mysql5/bin/mysql_config
This worked for me with mysql installed via macports by the command:
sudo port install mysql5 +server
Source: Code Intensity