aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2014-10-27 11:33:05 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2014-10-27 11:33:05 +0900
commitb3f89ec269012c05aa53884cd105a6513ce2d8eb (patch)
treebee4d234615d52c9eea696229f217af281c4a3b4 /Rakefile
parentc9298be49e753cce1a6917f33120417ac3a97077 (diff)
downloadruby-openssl-b3f89ec269012c05aa53884cd105a6513ce2d8eb.tar.gz
rake test works now.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 8e12d8c1..05c1817f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,5 +1,11 @@
require "bundler/gem_tasks"
require 'rake'
require 'rake/extensiontask'
+require 'rake/testtask'
Rake::ExtensionTask.new('openssl')
+
+# the same as before
+Rake::TestTask.new do |t|
+ t.libs << 'test'
+end