January 2010
1 post
5 tags
Snow Leopard Rails Development Environment
A good Ruby on Rails development environment needs a few things: SSL, image processing, text editor, version control, etc. These notes explain how I setup rails development environments for Mac OS X 10.6 (Snow Leopard).
Step 1. Updating Gems
Before doing anything, it is important to ensure that you are running on the latest gems. To do so:
sudo gem update --system
sudo gem update
Step 2....