Using an existing personal domain with posterous

Figured out how to use my personal domain (http://benWoz.com) with my posterous blog! http://posterous.com/help/custom_domain

Notes on installing cucumber

Notes on installing cucumber (for Behavior and Test Driven Development (BDD & TDD) on Ruby) on Mac OS-X 10.6

1. To install Ruby, download and install Apple's X-Code tool from their web site. It's free but does require an account and as a 2GB file, can take a little while to download.
1.1 Login then select "Xcode 3.2.3 and iPhone SKD 4"
1.2 Run and install the downloaded image

Now, go into the Terminal.

2. Install rspec:
    bwoznicki$ sudo gem install rspec
Password:
Note1: If you don't do "sudo", you won't have access to these tools the next time you enter the terminal
Note2: If you get a bunch of "Could not find main page README.rdoc" responses, don't worry about them-it doesn't affect your ability to use this tool.
2.1 Verify rspec installed correctly:
    spec --help
If you get a "command not found" response, something went wrong.

3. Install gherkin:
    bwoznicki$ sudo gem install gherkin
3.1 Verify gherkin installed correctly:
    gherkin --help

4. Install cucumber
    sudo gem install cucumber
4.1 Verify cucumber installed correctly:
    cucumber --help