-
-
Save redfit/3371540 to your computer and use it in GitHub Desktop.
Revisions
-
redfit revised this gist
Oct 18, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/bash # install packages needed to compile ruby sudo yum -y install make gcc-c++ zlib-devel openssl-devel \ readline-devel gdbm-devel bison \ libffi-devel wget # you should register EPEL repository to install libyaml -
redfit revised this gist
Aug 16, 2012 . 1 changed file with 6 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,16 @@ #!/bin/bash # install packages needed to compile ruby sudo yum -y install make gcc zlib-devel openssl-devel \ readline-devel gdbm-devel bison \ libffi-devel wget # you should register EPEL repository to install libyaml sudo rpm -Uvh http://ftp-srv2.kddilabs.jp/Linux/distributions/fedora/epel/5/x86_64/epel-release-5-4.noarch.rpm sudo yum -y install libyaml-devel cd /tmp wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz tar xvzf ruby-1.9.3-p194.tar.gz cd ruby-1.9.3-p194 ./configure --prefix=/usr/local sudo make sudo make install sudo yum update -
redfit revised this gist
Aug 16, 2012 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,12 +4,12 @@ yum -y install make gcc zlib-devel openssl-devel \ readline-devel gdbm-devel bison \ libffi-devel wget # you should register EPEL repository to install libyaml rpm -Uvh http://ftp-srv2.kddilabs.jp/Linux/distributions/fedora/epel/5/x86_64/epel-release-5-4.noarch.rpm yum -y install libyaml-devel cd /tmp wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz tar xvzf ruby-1.9.3-p194.tar.gz cd ruby-1.9.3-p194 ./configure --prefix=/usr/local make make install -
masa-ita revised this gist
Jul 20, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ # install packages needed to compile ruby yum -y install make gcc zlib-devel openssl-devel \ readline-devel gdbm-devel bison \ libffi-devel wget # you should register EPEL repository to install libyaml rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm yum -y install libyaml-devel -
masa-ita created this gist
Jun 30, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ #!/bin/bash # install packages needed to compile ruby yum -y install make gcc zlib-devel openssl-devel \ readline-devel gdbm-devel bison \ libffi-devel # you should register EPEL repository to install libyaml rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm yum -y install libyaml-devel cd /tmp wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz tar xvzf ruby-1.9.3-p194.tar.gz cd ruby-1.9.3-p194 ./configure --prefix=/usr/local make make install