Autotest Growl Fail/Pass Smilies

Posted by jamie Mon, 30 Jul 2007 14:19:37 GMT

John Nunemaker posted a handy tip on setting up autotest to work with Growl

I use this all the time now however I didn’t like the ugly smilies (call me shallow if you like). I used Wolfgang Bartelme’s Smily Devkit to make a couple of PNG’s slightly more pleasing to the eye.

Autotest Fail image Autotest Pending image Autotest Pass image

The zip file can be downloaded here: autotest_images.zip

Update 17-08-07: Added ‘pending’ image for RSpec as requested by Aslak Hellesøy

Posted in , , ,  | Tags , , , ,  | 6 comments

SonicIQ are hiring - Junior Rails Developer Wanted in UK

Posted by jamie Thu, 08 Mar 2007 12:20:14 GMT

SonicIQ are looking for a Junior Ruby on Rails Developer.

We are based in Bournemouth, Dorset, UK. Anyone interested in working professionally with Rails on some exciting projects please drop us your CV.

Posted in , , , ,  | 1 comment

Building Ruby, Rails, Subversion, Mongrel, and MySQL on Mac OS X Tiger - The Easy Way

Posted by jamie Thu, 01 Mar 2007 21:40:13 GMT

Dan Benjamin recently updated his very helpful article entitled “Building Ruby, Rails, Subversion, Mongrel, and MySQL on Mac OS X”.

I don’t know about anyone else but compiling software is not one of my favourite pastimes. As I’ve been chopping and changing macs lately I thought I’d write a couple of shell scripts to get things right before running anything on my nice new (freshly installed) MacBook Pro.

Prerequisites

There are a couple of prerequisites in addition to what’s on Dan’s “What’s Needed” list before running the scripts. The first is that you must have MySQL installed as referenced in Dan’s article, and the second being the following:

Ensure you have the following line at the end of your ~/.bash_login file:
export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH" 
You can add this by typing nano ~/.bash_login then copy and paste the above line into the end of the file. Once this is done, hit ctrl-x to exit, answering ‘y’ to “do you want to save changes” prompt.

The scripts

There are two scripts, 01_osx_rails.sh and 02_osx_image_tools.sh and the following will explain how to use them.

Creating your development environment

The first script will install everything in Dan’s article along with the following gems that I use frequently:
  • rails version 1.1.6 for support of older rails apps
  • bluecloth
  • redcloth
  • sqlite3-ruby
  • ferret
  • ZenTest
  • redgreen

Right… here we go:

(please read the licence before running these scripts as although they have been tested on a clean install of Tiger, I can’t take any responsibility if something breaks)
  1. Download 01_osx_rails.sh to your desktop
  2. If you don’t wish to install all of these gems then open the file in a text editor and comment out the relevant lines with a hash.
  3. Open a new terminal window and type the following:
    cd ~/Desktop
    sh 01_osx_rails.sh
    
  4. Go make a cup of tea and watch all the pretty text scroll before your eyes.

That’s it, you should now have a fully working development environment.

Image tools

I use a couple of image tools on my system, GD and ImageMagick (with RMagick). If you wish to install these tools and the related libraries, run the following:

(This script hasn’t been tested as much as the previous one so use at your own risk. If anyone has any bug fixes then please post a comment)

cd ~/Desktop
sh 02_osx_image_tools.sh

We’re done

Please let me know if I’ve missed anything obvious.

I hope this helps anyone else out there with Compilaphobia!

Posted in , ,  | Tags , , ,  | 2 comments