Entries Comments



Month: March, 2009

Jive Launches SBS and a Rocket

13 March, 2009 (14:07) | Life, Web | By: benjamin

My company is amazing. In preparation for the launch of our new product, some of the team got together to launch a rocket. After all, NASA uses Jive, so why shouldn’t we use rockets?

YouTube Preview Image

There was one dude on site who managed to catch this awesome snapshot!

Jive Launches the SBS Rocket!

Updating RubyGems on Mac OS X 10.5 Leopard

5 March, 2009 (20:38) | Coding, Mac, Web | By: benjamin

I’m just posting a simple tip today.

I was wanting to play around with the very cool SASS meta-language using Compass. The language and tool are implemented in Ruby, which is pre-installed on OS X, but as I discovered, I needed a newer version of RubyGems.

I had already known I needed to update Gems, so I was doing the following:

$ sudo gem update

Eventually I got errors like this:

Updating installed gems...
Bulk updating Gem source index for: http://gems.rubyforge.org
Bulk updating Gem source index for: http://gems.github.com/
Attempting remote update of RedCloth
ERROR:  Error installing RedCloth:
    RedCloth requires RubyGems version >= 1.2
Attempting remote update of capistrano
ERROR:  Error installing capistrano:
    capistrano requires RubyGems version >= 1.2
Attempting remote update of net-sftp
ERROR:  Error installing net-sftp:
    net-sftp requires RubyGems version >= 1.2
Attempting remote update of net-ssh
ERROR:  Error installing net-ssh:
    net-ssh requires RubyGems version >= 1.2
Gems updated: RedCloth, capistrano, net-sftp, net-ssh

Turns out, to update RubyGems, one must update the gem system!

So, the next correct command to run is:

$ sudo gem update --system

This updated my RubyGems to version 1.3.1 and allowed me to move forward in playing with Ruby.