Skip to content

Instantly share code, notes, and snippets.

@antonio
Created October 22, 2012 17:32
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonio/3932811 to your computer and use it in GitHub Desktop.
Save antonio/3932811 to your computer and use it in GitHub Desktop.
Ruby 1.9.3-p286 with the latest falcon patch
build_package_combined_patch() {
local package_name="$1"
{
curl https://raw.github.com/gist/3721565/falcon.patch | patch -p1
autoconf
./configure --prefix="$PREFIX_PATH" $CONFIGURE_OPTS
make -j 8
make install
} >&4 2>&1
}
install_package "yaml-0.1.4" "http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz"
install_package "ruby-1.9.3-p286" "http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p286.tar.gz" combined_patch

What

Latest Ruby version as of today with funny-falcon's performance patch

Why

I installed the performance patch that is at https://gist.github.com/1688857 and was so satisfied with it that when a new Ruby version and newer patches were released I had to install them.

Full credits go to @burke and @funny-falcon, I simply reused their work.

How

  • Download
  • Type rbenv install 1.9.3-p286-perf
  • Profit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment