Skip to content

Instantly share code, notes, and snippets.

@werm
Forked from ngauthier/README.md
Last active December 15, 2015 22:00
Show Gist options
  • Select an option

  • Save werm/5330232 to your computer and use it in GitHub Desktop.

Select an option

Save werm/5330232 to your computer and use it in GitHub Desktop.

Revisions

  1. werm revised this gist Apr 7, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -2,4 +2,4 @@ Installs ruby-2.0.0-p0 on ubuntu via checkinstall so it's in your package manage

    Quick install:

    curl -L https://gist.github.com/ngauthier/5039249/raw/1868bf4714052b40e2bb7fdf3f40fbeb5d730bca/ruby-2-install-ubuntu.sh | bash -s
    curl -L https://gist.github.com/werm/5330232/raw/02da122ae042af2b814f39d27db335639e403237/ruby-2-install-ubuntu.sh | bash -s
  2. werm revised this gist Apr 7, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion ruby-2-install-ubuntu.sh
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    #!/usr/bin/env bash
    set -e

    sudo apt-get build-dep ruby1.9.1
    sudo apt-get build-dep ruby1.9.3

    wget -c http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.gz
    tar xzf ruby-2.0.0-p0.tar.gz
  3. @ngauthier ngauthier revised this gist Feb 26, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion ruby-2-install-ubuntu.sh
    Original file line number Diff line number Diff line change
    @@ -12,4 +12,4 @@ make

    sudo checkinstall -y \
    --pkgversion 2.0.0-p0 \
    --provides "ruby-interpreter" \
    --provides "ruby-interpreter"
  4. @ngauthier ngauthier revised this gist Feb 26, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -2,4 +2,4 @@ Installs ruby-2.0.0-p0 on ubuntu via checkinstall so it's in your package manage

    Quick install:

    curl -L https://gist.github.com/anonymous/5039225/raw/1868bf4714052b40e2bb7fdf3f40fbeb5d730bca/ruby-2-ubuntu-install.sh | bash -s
    curl -L https://gist.github.com/ngauthier/5039249/raw/1868bf4714052b40e2bb7fdf3f40fbeb5d730bca/ruby-2-install-ubuntu.sh | bash -s
  5. @ngauthier ngauthier created this gist Feb 26, 2013.
    5 changes: 5 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    Installs ruby-2.0.0-p0 on ubuntu via checkinstall so it's in your package manager and you can remove it.

    Quick install:

    curl -L https://gist.github.com/anonymous/5039225/raw/1868bf4714052b40e2bb7fdf3f40fbeb5d730bca/ruby-2-ubuntu-install.sh | bash -s
    15 changes: 15 additions & 0 deletions ruby-2-install-ubuntu.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    #!/usr/bin/env bash
    set -e

    sudo apt-get build-dep ruby1.9.1

    wget -c http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.gz
    tar xzf ruby-2.0.0-p0.tar.gz
    cd ruby-2.0.0-p0

    ./configure
    make

    sudo checkinstall -y \
    --pkgversion 2.0.0-p0 \
    --provides "ruby-interpreter" \