Sha256: a049138f9bb2239130410a79c49000f26c4795121490d6da9bcedc75cbd5c326

Contents?: true

Size: 358 Bytes

Versions: 4

Compression:

Stored size: 358 Bytes

Contents

#!/usr/bin/env bash

apt-get update
apt-get install -y build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev wget libffi-dev gcc g++ make bison libtool autoconf git
cd `mktemp -d`
curl -L "https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.0.tar.gz" | tar -xzf-
cd ruby-2.5.0
./configure --prefix=/usr/local
make
make install
gem install bundler

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
script_core-0.0.4 bootstrap.sh
script_core-0.0.3 bootstrap.sh
script_core-0.0.2 bootstrap.sh
script_core-0.0.1 bootstrap.sh