Created
September 28, 2011 12:12
-
-
Save clyfe/1247787 to your computer and use it in GitHub Desktop.
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 characters
# Install Ruby 1.9.2 on CentOS | |
# https://github.com/imeyer/ruby-1.9.2-rpm | |
yum groupinstall "Development Tools" | |
yum install curl-devel openssl-devel httpd-devel apr-devel apr-util-devel libzlib-ruby zlib-devel | |
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p290.tar.gz | |
tar -zxvf ruby-1.9.2-p290.tar.gz | |
cd ruby-1.9.2-p290 | |
./configure && make && make install | |
# other | |
https://github.com/crafterm/sprinkle | |
https://gist.github.com/1165512 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment