about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-08-30 08:11:44 +0000
committerEric Wong <normalperson@yhbt.net>2010-10-04 20:25:43 +0000
commit28fc5a6b069a544389603e817f608a3d09eb0440 (patch)
tree7b7c941d025edf04f97068badc749448be444753
parent8612ccdd2f7f0c0b182ecc9616a76e97b879f6c0 (diff)
downloadunicorn-28fc5a6b069a544389603e817f608a3d09eb0440.tar.gz
Rails 3 is out, and requires no code changes on our end to work
(as far as our tests show :)
(cherry picked from commit da272fc48ffaa808456fe94dd7a3e01bc9799832)
-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 833288c..c140b89 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.rc2).each do |rails_ver|
+  %w(3.0.0).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 9fbe5ee..d996f34 100644
--- a/t/rails3-app/Gemfile
+++ b/t/rails3-app/Gemfile
@@ -1,6 +1,6 @@
 source 'http://rubygems.org'
 
-# gem 'rails', '3.0.0.rc2'
+# gem 'rails', '3.0.0'
 
 # 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 5661e29..b398f03 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.rc2}
+RAILS_VERSION=${RAILS_VERSION-3.0.0}
 case $RUBY_VERSION in
 1.8.7|1.9.2) ;;
 *)