19 Mar 2009, 3:29am
Programming Ruby on Rails: development drivers libs MySQL
by bseanvt

leave a comment
Programming Ruby on Rails: development drivers libs MySQL
by bseanvt
leave a comment
mysql on rails 2.3.2
mysql driver is no longer bundled w/ rails. you’ll need to install it yourself w/
sudo gem install mysql
however, on ubuntu (heron) this won’t work. issue these commands first
sudo apt-get install libmysql-ruby libmysqlclient-dev
if libmysqlclient-dev fails… try libmysqlclient15-dev
then run
sudo gem install mysql
using rails paperclip plugin on ubuntu
paperclip is an awesome plugin for rails. it let’s you attach an image to any of your models. installation and usage more information is available at http://jimneath.org/2008/04/17/paperclip-attaching-files-in-rails/
by default paperclip uses the image magick library for image manipulation/resizing. you’ll need to install this library as well as the ruby api to it in order to use it. on ubuntu using apt get here are the commands
apt-get install imagemagick apt-get install librmagick-ruby1.8


