about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-08-28 07:07:14 +0000
committerEric Wong <normalperson@yhbt.net>2010-08-28 07:08:09 +0000
commit27f4d6ed7c7758620b54deccae319ba7aa9d40eb (patch)
tree72093a2851c20dcd41e10fed4420f4287c2e90a4
parent7309e4b73e134ee7969cc8150b6ebaa6b8f8cb62 (diff)
downloadunicorn-27f4d6ed7c7758620b54deccae319ba7aa9d40eb.tar.gz
No code changes needed, thankfully.
(cherry picked from commit 18968f6aff2fa5ba5a7e3e3d47c9cc05cd6c260d)
-rw-r--r--Rakefile2
-rw-r--r--t/rails3-app/Gemfile2
-rw-r--r--t/test-rails3.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 69f922e..833288c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -207,7 +207,7 @@ task :isolate do
   status.success? or abort status.inspect
 
   # pure Ruby gems can be shared across all Rubies
-  %w(3.0.0.beta4).each do |rails_ver|
+  %w(3.0.0.rc2).each do |rails_ver|
     opts[:path] = "tmp/isolate/rails-#{rails_ver}"
     pid = fork { Isolate.now!(opts) { gem 'rails', rails_ver } }
     _, status = Process.waitpid2(pid)
diff --git a/t/rails3-app/Gemfile b/t/rails3-app/Gemfile
index 491e910..9fbe5ee 100644
--- a/t/rails3-app/Gemfile
+++ b/t/rails3-app/Gemfile
@@ -1,6 +1,6 @@
 source 'http://rubygems.org'
 
-# gem 'rails', '3.0.0.beta3'
+# gem 'rails', '3.0.0.rc2'
 
 # Bundle edge Rails instead:
 # gem 'rails', :git => 'git://github.com/rails/rails.git'
diff --git a/t/test-rails3.sh b/t/test-rails3.sh
index beeccf5..5661e29 100644
--- a/t/test-rails3.sh
+++ b/t/test-rails3.sh
@@ -1,5 +1,5 @@
 . ./test-lib.sh
-RAILS_VERSION=${RAILS_VERSION-3.0.0.beta4}
+RAILS_VERSION=${RAILS_VERSION-3.0.0.rc2}
 case $RUBY_VERSION in
 1.8.7|1.9.2) ;;
 *)