Skip to content

Instantly share code, notes, and snippets.

View chubarovNick's full-sized avatar

Nick Chubarov chubarovNick

View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p195.tar.gz
tar -xvzf ruby-2.0.0-p195.tar.gz
cd ruby-2.0.0-p195/
./configure --prefix=/usr/local
make
make install