Skip to content

Instantly share code, notes, and snippets.

@yetanothernguyen
Last active October 11, 2015 05:07
Show Gist options
  • Save yetanothernguyen/3807116 to your computer and use it in GitHub Desktop.
Save yetanothernguyen/3807116 to your computer and use it in GitHub Desktop.
Pivotal Workstation
pushd `pwd`
if rvm --version 2>/dev/null; then
gem install soloist
else
sudo gem install soloist
fi
mkdir -p ~/cookbooks; cd ~/cookbooks
cat > soloistrc <<EOF
cookbook_paths:
- $PWD
recipes:
- pivotal_workstation::meta_osx_base
- pivotal_workstation::meta_osx_development
- pivotal_workstation::meta_ruby_development
EOF
if [[ -d pivotal_workstation ]]; then
cd pivotal_workstation && git pull && cd ..
else
git clone git://github.com/says/pivotal_workstation.git
fi
soloist
pop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment