summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2015-06-28 08:56:28 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2015-06-28 08:56:28 +0900
commit86388bbc72c7bd10d3482cc63dfdfa276c604baf (patch)
tree923f1597af69f98db6508f4e3c34c0846c8e1233 /Rakefile
parent357c6752831c6997a6131e3b38fb8db1a303da4c (diff)
parent40ca1976816e8f0e458c607e034ce1ca412eb036 (diff)
downloadpsych-86388bbc72c7bd10d3482cc63dfdfa276c604baf.zip
Merge pull request #233 from miketheman/update_minitest_verison
update minitest gem to 5.x, add Ruby 2.2 test target
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 7c15d95..79957ab 100644
--- a/Rakefile
+++ b/Rakefile
@@ -9,7 +9,7 @@ class Hoe
end
gem 'rake-compiler', '>= 0.4.1'
-gem 'minitest', '~> 4.0'
+gem 'minitest', '~> 5.0'
require "rake/extensiontask"
Hoe.plugin :doofus, :git, :gemspec
@@ -24,7 +24,7 @@ $hoe = Hoe.spec 'psych' do
self.testlib = :minitest
extra_dev_deps << ['rake-compiler', '>= 0.4.1']
- extra_dev_deps << ['minitest', '~> 4.0']
+ extra_dev_deps << ['minitest', '~> 5.0']
self.spec_extras = {
:extensions => ["ext/psych/extconf.rb"],