Skip to content

Instantly share code, notes, and snippets.

@Oneiroi
Created March 19, 2012 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oneiroi/2127958 to your computer and use it in GitHub Desktop.
Save Oneiroi/2127958 to your computer and use it in GitHub Desktop.
Aeolus @ OSX, Note: using homebrew + ruby version 1.9.3-p0
#!/bin/bash
BREW_RUBY_BIN="/usr/local/Cellar/ruby/1.9.3-p0/bin/"
echo "--- installing pre-requsite gems"
echo "rails
haml
nokogiri
will_paginate
deltacloud-client
simple-navigation
rest-client
builder
json
rack-restful_submit
uuidtools
sqlite3
fastercsv
rails_warden
aeolus-image
pg
ruby-net-ldap
oauth
rake
sass" | while read g; do ${BREW_RUBY_BIN}/gem install $g; done
echo "--- installing aeolus gems"
TDIR=`mktemp -d /tmp/aelous-cli.XXXXXX`
git clone git://github.com/aeolusproject/aeolus-cli.git $TDIR
pushd .
cd $TDIR
${BREW_RUBY_BIN}/rake gem
echo "Yeh this isn't working at this time, Requirments on yum / rpmtask in Rake may prevent this from being portable to OSX"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment