diff options
author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2020-03-06 11:22:47 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2020-03-06 11:22:47 +0900 |
commit | 4af7cc648434b415f8c546cf106cbf45d0ced327 (patch) | |
tree | 1fe7441bb3db192bd0c37a750d1d2d242f51d573 | |
parent | 7f4df1e87ba992a69820e282a6954e5fe11cfecb (diff) | |
download | bundler-4af7cc648434b415f8c546cf106cbf45d0ced327.tar.gz |
For Ruby 2.3
-rw-r--r-- | spec/support/rubygems_ext.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/support/rubygems_ext.rb b/spec/support/rubygems_ext.rb index 3c8d97b83c..62e2274fbe 100644 --- a/spec/support/rubygems_ext.rb +++ b/spec/support/rubygems_ext.rb @@ -23,7 +23,8 @@ module Spec "rake" => "13.0.1", "builder" => "~> 3.2", # ruby-graphviz is used by the viz tests - "ruby-graphviz" => ">= 0.a", + # for >= Ruby 2.3 + "ruby-graphviz" => "1.2.4", } extend self |