File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
before_install :
2
- - gem update --system
3
- - gem install bundler
2
+ - gem update --system 2.7.9
3
+ - gem install bundler:1.17.3
4
4
- rvm @global do gem uninstall did_you_mean
5
+ - # Travis's rvm 2.5.5 installation comes with bundler 2.0.1 for some reason.
6
+ - if [ "$TRAVIS_RUBY_VERSION" = "2.5.5" ]; then rvm @global do gem uninstall bundler -v 2.0.1 -x; fi
5
7
bundler_args : --without development
6
8
language : ruby
7
9
rvm :
10
12
- 2.0.0
11
13
- 2.1.10
12
14
- 2.2.10
13
- - 2.3.7
14
- - 2.4.4
15
- - 2.5.1
15
+ - 2.3.8
16
+ - 2.4.5
17
+ - 2.5.5
18
+ - 2.6.2
16
19
- ruby-head
17
20
matrix :
18
21
allow_failures :
19
22
- rvm : ruby-head
20
23
fast_finish : true
21
24
script : bundle exec thor spec
22
- sudo : false
23
25
cache : bundler
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
4
4
require "thor/version"
5
5
6
6
Gem ::Specification . new do |spec |
7
- spec . add_development_dependency "bundler" , "~> 1.0"
7
+ spec . add_development_dependency "bundler" , ">= 1.0" , "< 3 "
8
8
spec . authors = [ "Yehuda Katz" , "José Valim" ]
9
9
spec . description = "Thor is a toolkit for building powerful command-line interfaces."
10
10
You can’t perform that action at this time.
0 commit comments