thewoolleyman / cinabox

Continuous Integration. In a Box!

This URL has Read+Write access

cinabox / bootstrap_ruby.sh
6757c65b » thewoolleyman 2009-04-10 add shebang 1 #!/bin/bash
51972a03 » thewoolleyman 2009-06-30 point to external bootstrap... 2 # A wrapper script to download and run bootstrap_ruby.sh, see http://github.com/thewoolleyman/bootstrap-ruby
15dee89f » thewoolleyman 2008-06-22 initial ccrb checkin 3
bf8dfb94 » thewoolleyman 2009-08-18 allow override of bootstrap... 4
5 if [ -z $BOOTSTRAP_RUBY_GIT_DOWNLOAD_URL ]; then BOOTSTRAP_RUBY_GIT_DOWNLOAD_URL='http://github.com/thewoolleyman/bootstrap-ruby/raw/master'; fi
15dee89f » thewoolleyman 2008-06-22 initial ccrb checkin 6
bf8dfb94 » thewoolleyman 2009-08-18 allow override of bootstrap... 7 sudo rm -f /tmp/bootstrap_ruby.sh
8 wget -O /tmp/bootstrap_ruby.sh $BOOTSTRAP_RUBY_GIT_DOWNLOAD_URL/bootstrap_ruby.sh
51972a03 » thewoolleyman 2009-06-30 point to external bootstrap... 9 chmod a+x /tmp/bootstrap_ruby.sh
24dd6a23 » thewoolleyman 2009-07-22 Disable Ruby program suffix... 10 NO_RUBY_PROGRAM_SUFFIX=true /tmp/bootstrap_ruby.sh # Disable Ruby program suffix until Rubygems issues with non-default format-executables are resolved.