Posted by
Justin on
Thursday, December 06
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
Posted by
Justin on
Tuesday, November 13
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
Posted by
Justin on
Thursday, September 27
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