Sha256: 75a3348e4b4cc334627b3b3815ed2ea642058a11806b6f18257385e22f153a35

Contents?: true

Size: 466 Bytes

Versions: 2

Compression:

Stored size: 466 Bytes

Contents

#!/bin/bash
#-------------------------------------------------------------------------------

# Install Ruby.
add-apt-repository -y ppa:brightbox/ruby-ng-experimental 2>&1 || exit 51
apt-get update || exit 52

apt-get -y install ruby2.0 ruby2.0-dev || exit 53
update-alternatives --set ruby /usr/bin/ruby2.0 || exit 54
update-alternatives --set gem /usr/bin/gem2.0 || exit 55

# Set Gem options
( cat <<'EOP'
gem: --no-rdoc --no-ri 
EOP
) > "$HOME/.gemrc" || exit 56

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
corl-0.4.18 bootstrap/os/ubuntu/05_ruby.sh
corl-0.4.17 bootstrap/os/ubuntu/05_ruby.sh