Sha256: 01a53d6be11ce296dda6f32e8bc84309867db5458cd06dbef1c7f5730ef36f02
Contents?: true
Size: 438 Bytes
Versions: 16
Compression:
Stored size: 438 Bytes
Contents
# Installing ruby cd /tmp wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p180.tar.gz || fail "Could not download Ruby source" tar xzvf ruby-1.9.2-p180.tar.gz cd ruby-1.9.2-p180 ./configure make && make install cd /tmp rm -rf /tmp/ruby-1.9.2-p180 rm /tmp/ruby-1.9.2-p180.tar.gz ln -s /usr/local/bin/ruby /usr/bin/ruby # Create a sym link for the same path ln -s /usr/local/bin/gem /usr/bin/gem # Create a sym link for the same path
Version data entries
16 entries across 4 versions & 1 rubygems