about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-03-08 14:08:43 -0800
committerEric Wong <normalperson@yhbt.net>2011-03-10 14:02:26 -0800
commitafea5cd7c691de95b37d29728ab4880e3b737a42 (patch)
tree3bc1fd59060c402383bfa60e25016c08b2e85007 /t
parent85784e1b5fca7bbadc7fb5dba1f100785188954f (diff)
downloadrainbows-afea5cd7c691de95b37d29728ab4880e3b737a42.tar.gz
New sendfile gem will give us IO#trysendfile.
We might as well use and test the latest and greatest
versions of everything else since thats what users
pull in by default.
Diffstat (limited to 't')
-rw-r--r--t/test_isolate.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/t/test_isolate.rb b/t/test_isolate.rb
index 7d04eac..95486ef 100644
--- a/t/test_isolate.rb
+++ b/t/test_isolate.rb
@@ -17,15 +17,16 @@ lock = File.open(__FILE__, "rb")
 lock.flock(File::LOCK_EX)
 Isolate.now!(opts) do
   gem 'unicorn', '3.4.0'
-  gem 'kcar', '0.1.2'
+  gem 'kcar', '0.2.0'
   gem 'raindrops', '0.4.1'
 
   if engine == "ruby"
-    gem 'sendfile', '1.0.0' # next Rubinius should support this
+    gem 'sendfile', '1.1.0' # next Rubinius should support this
     gem 'cool.io', '1.0.0'
 
     gem 'eventmachine', '0.12.10'
-    gem 'async_sinatra', '0.4.0'
+    gem 'sinatra', '1.2.0'
+    gem 'async_sinatra', '0.5.0'
 
     gem 'neverblock', '0.1.6.2'
   end
@@ -35,7 +36,7 @@ Isolate.now!(opts) do
     gem 'rack-fiber_pool', '0.9.1'
   end
 
-  gem 'sleepy_penguin', '1.4.0' if RUBY_PLATFORM =~ /linux/
+  gem 'sleepy_penguin', '2.0.0' if RUBY_PLATFORM =~ /linux/
 end
 
 $stdout.reopen(old_out)