summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorMike Fiedler <miketheman@gmail.com>2015-05-03 09:21:08 -0400
committerMike Fiedler <miketheman@gmail.com>2015-05-03 09:24:53 -0400
commit40ca1976816e8f0e458c607e034ce1ca412eb036 (patch)
tree696e1ffd9265ab2fe950ae1a5406d8c86eb9d8bd /Rakefile
parente1d7f705da01349b93420cd7f54576949d694a69 (diff)
downloadpsych-40ca1976816e8f0e458c607e034ce1ca412eb036.tar.gz
update minitest gem to 5.x, add Ruby 2.2 test target
Follows #213 Closes #212
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"],