This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'http://rubygems.org' | |
gem 'bitcask' | |
gem 'bert' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update, upgrade and install development tools: | |
apt-get update | |
apt-get -y upgrade | |
apt-get -y install build-essential | |
apt-get -y install vim git-core curl zlib1g-dev libreadline-dev libssl-dev | |
# Install rbenv | |
if [ ! -d "/usr/local/rbenv" ]; then | |
git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv |