Sha256: 8491c4a1262ca208677b25c0f7a1783e64d47caed34e6a86deb06ead4a3f7ee5
Contents?: true
Size: 417 Bytes
Versions: 315
Compression:
Stored size: 417 Bytes
Contents
# Install Ruby from packages apt-get -y install ruby ruby-dev libopenssl-ruby1.8 irb ri rdoc # Install Rubygems from source rg_ver=1.8.22 curl -o /tmp/rubygems-${rg_ver}.zip \ "http://production.cf.rubygems.org/rubygems/rubygems-${rg_ver}.zip" (cd /tmp && unzip rubygems-${rg_ver}.zip && \ cd rubygems-${rg_ver} && ruby setup.rb --no-format-executable) rm -rf /tmp/rubygems-${rg_ver} /tmp/rubygems-${rg_ver}.zip
Version data entries
315 entries across 27 versions & 2 rubygems