Skip to content

Commit f84baa9

Browse files
committed
Travis: work around Bundler
Bundler did drop support for MRI 2.2, which we still want to support. Sometime I feel like they do these things on purpose...
1 parent 0ff4a31 commit f84baa9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/travis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ else
99
gem update --system --no-doc
1010
fi
1111

12-
gem install bundler --no-doc
13-
gem update bundler --no-doc
12+
# Bundler 2.0 fails spectacular
13+
gem install bundler --no-doc --version '< 2'

influxdb.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
1818

1919
spec.required_ruby_version = ">= 2.2.0"
2020

21-
spec.add_development_dependency "bundler", "~> 1.3"
21+
spec.add_development_dependency "bundler", "< 2"
2222
spec.add_development_dependency "rake"
2323
spec.add_development_dependency "rspec", "~> 3.6"
2424
spec.add_development_dependency "rubocop", "~> 0.61.1"

0 commit comments

Comments
 (0)