about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-01-17 02:03:04 +0000
committerEric Wong <normalperson@yhbt.net>2014-01-17 08:34:29 +0000
commit3e701ee74ff29bdf5daa3249acede5a85a2b0097 (patch)
tree176888175c2b975f9a1ac1a33f0452e6b3d3bf86 /t
parent1b3e68e3eac0c3fbb2a32e4fddd26ee8a50ec627 (diff)
downloadrainbows-3e701ee74ff29bdf5daa3249acede5a85a2b0097.tar.gz
Internal reworking of unicorn 4.8.0 completely broke us(!).
This commit fixes things, but it means we no longer support
unicorn <= 4.7.  Sorry about that.
Diffstat (limited to 't')
-rw-r--r--t/test_isolate.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/t/test_isolate.rb b/t/test_isolate.rb
index f5f97b1..8f701ab 100644
--- a/t/test_isolate.rb
+++ b/t/test_isolate.rb
@@ -16,14 +16,14 @@ $stdout.reopen($stderr)
 lock = File.open(__FILE__, "rb")
 lock.flock(File::LOCK_EX)
 Isolate.now!(opts) do
-  gem 'kgio', '2.8.0'
+  gem 'kgio', '2.8.1'
   gem 'rack', '1.5.2'
   gem 'kcar', '0.4.0'
-  gem 'raindrops', '0.11.0'
-  gem 'unicorn', '4.6.2'
+  gem 'raindrops', '0.12.0'
+  gem 'unicorn', '4.8.0'
 
   if engine == "ruby"
-    gem 'sendfile', '1.1.0'
+    gem 'sendfile', '1.2.1'
     gem 'cool.io', '1.1.0'
 
     gem 'eventmachine', '1.0.0'
@@ -39,10 +39,10 @@ Isolate.now!(opts) do
   end
 
   if RUBY_PLATFORM =~ /linux/
-    gem 'sleepy_penguin', '3.1.0'
+    gem 'sleepy_penguin', '3.3.0'
 
     # is 2.6.32 new enough?
-    gem 'io_splice', '4.1.1' if `uname -r`.strip > '2.6.32'
+    gem 'io_splice', '4.2.0' if `uname -r`.strip > '2.6.32'
   end
 end