Skip to content

Instantly share code, notes, and snippets.

@wfarr
Created May 6, 2012 17:01
Show Gist options
  • Select an option

  • Save wfarr/2623286 to your computer and use it in GitHub Desktop.

Select an option

Save wfarr/2623286 to your computer and use it in GitHub Desktop.
#!/bin/env ruby
require 'bootlace'
Bootlace.strap_up do |b|
%w(
libqt4-dev
libxml2-dev
libxslt1-dev
libmysqlclient-dev
libsqlite3-dev
xvfb
x11-xserver-utils
).each do |pkg|
package ubuntu: pkg
end
b.package mac: "redis", ubuntu: "redis-server"
b.bundler
b.rake 'db:create', environment: { RAILS_ENV: "test" }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment