summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2014-12-06 19:47:44 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2014-12-06 19:47:44 +0900
commit54a11d89f0e6c6b0a88cc5c111f5551f9f1cb4ed (patch)
tree8c726cd644a5876c2d42dc98282a7faecf034e41 /Rakefile
parent436265e39a1ee7f8ea45337b1690fac7a5b66af5 (diff)
downloadpsych-54a11d89f0e6c6b0a88cc5c111f5551f9f1cb4ed.tar.gz
added minitest dependency into gemspec
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index fd20115..255c202 100644
--- a/Rakefile
+++ b/Rakefile
@@ -9,6 +9,7 @@ class Hoe
end
gem 'rake-compiler', '>= 0.4.1'
+gem 'minitest', '~> 4.0'
require "rake/extensiontask"
Hoe.plugin :doofus, :git, :gemspec, :isolate
@@ -23,6 +24,7 @@ $hoe = Hoe.spec 'psych' do
self.testlib = :minitest
extra_dev_deps << ['rake-compiler', '>= 0.4.1']
+ extra_dev_deps << ['minitest', '~> 4.0']
self.spec_extras = {
:extensions => ["ext/psych/extconf.rb"],