LoadError: no such file to load -- openssl

After installing the aws-s3 gem on Ubuntu, I wasn't able to load it:

$: irb
>> require 'rubygems'
=> true
>> require 'aws/s3'
LoadError: no such file to load -- openssl

I thought it was because I just didn't have openssl installed. So I installed it:

$: sudo apt-get install openssl

Still not working. So I installed...

$: sudo apt-get install libssl-dev

Still not working. Turns out I needed...

$: sudo apt-get install libopenssl-ruby

Bingo!

$: irb
>> require 'rubygems'
=> true
>> require 'aws/s3'
=> true

Tags: ubuntu  Meta: 0 comments, permalink

SVN with Apache2.2 and DAV on Ubuntu

When I want neato http urls for my repository, as well as simple anonymous checkouts, this is how I roll:

Tags: ubuntu  Meta: 0 comments, permalink

Rails setup and deployment with Capistrano 2.0 on Ubuntu 7.04 (Feisty)

A very specific post here to serve as a reminder the next time I have to do this: Setting up Ubuntu 7.04 with rails, Apache 2.2, mongrel (clustered), MySQL5, subversion, and deploying with capistrano 2.0. So bleeding edge!

Tags: ubuntu  Meta: 5 comments, permalink