diff options
author | SHIBATA Hiroshi <hsbt@ruby-lang.org> | 2018-06-15 17:17:10 +0900 |
---|---|---|
committer | SHIBATA Hiroshi <hsbt@ruby-lang.org> | 2018-06-15 17:42:15 +0900 |
commit | c07a5e7aad7e4bf0c1594cb733ee19029450e378 (patch) | |
tree | d8c9aff806b8a56f5517da04fba068a552f76148 | |
parent | d5eda10681ac5159a0e1843d562c5c9420a96e60 (diff) | |
download | bundler-c07a5e7aad7e4bf0c1594cb733ee19029450e378.tar.gz |
Skip system bundler execution on Travis CI with Ruby 2.6.
-rw-r--r-- | spec/commands/exec_spec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/commands/exec_spec.rb b/spec/commands/exec_spec.rb index 2fe2667363..5ece0bccc3 100644 --- a/spec/commands/exec_spec.rb +++ b/spec/commands/exec_spec.rb @@ -789,6 +789,8 @@ __FILE__: #{path.to_s.inspect} end it "overrides disable_shared_gems so bundler can be found" do + skip "bundler 1.16.x is not support with Ruby 2.6 on Travis CI" if RUBY_VERSION >= "2.6" + file = bundled_app("file_that_bundle_execs.rb") create_file(file, <<-RB) #!#{Gem.ruby} |