Category Archives: Ruby

Getting started with Rails 3

Installation first lets get a copy of rails 3 going # make sure you have gem bundler and rack installed: sudo gem install bundler rack # clone of edge rails git clone git://github.com/rails/rails.git # generate a new app: ruby rails/railties/bin/rails … Continue reading

Posted in Programming, Ruby | Tagged | Leave a comment

Autotest on OSX

Download the required gems # required for autotest and rails sudo gem install autotest autotest-rails # use osx 10.5 fsevent library instead of traversing the filesystem for changes (lowers CPU usage) sudo gem install autotest-fsevent # gives us pretty red, … Continue reading

Posted in Programming, Ruby | 1 Comment

Ruby 1.9.2 on Snow Leopard

A quick howto on setting up 64bit Ruby w/ MySQL gem under RVM (Ruby Version Manager) Continue reading

Posted in Programming, Ruby | Tagged , , , , | 2 Comments