From 1c659c0d15bcdbd058fff89cc2a696c141011ef4 Mon Sep 17 00:00:00 2001 From: Evan Weaver Date: Wed, 7 May 2014 12:08:29 -0700 Subject: [PATCH] I guess we're testing 2.0 now. --- Gemfile.lock | 2 +- Rakefile | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f300f4b4..8d009c00 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - memcached (1.7.2) + memcached (1.8.0) GEM remote: https://rubygems.org/ diff --git a/Rakefile b/Rakefile index 89ee32a3..5f68dea1 100644 --- a/Rakefile +++ b/Rakefile @@ -107,6 +107,10 @@ def with_vm(vm, cmd) end end +task :test_20 do + with_vm("/usr/bin/ruby", "test") +end + task :test_19 do with_vm("/opt/local/bin/ruby1.9", "test") end @@ -115,7 +119,7 @@ task :test_rbx do with_vm("/usr/local/rubinius/1.2.4/bin/rbx", "test") end -task :test_all => [:test_19, :test_rbx] +task :test_all => [:test_20, :test_19, :test_rbx] task :prerelease => [:manifest, :test_all, :install]