Skip to content

Commit fd114d1

Browse files
authored
Merge pull request #649 from deivid-rodriguez/travis_ci_refresh
Travis CI refresh
2 parents d3762d0 + f72295e commit fd114d1

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
before_install:
2-
- gem update --system
3-
- gem install bundler
2+
- gem update --system 2.7.9
3+
- gem install bundler:1.17.3
44
- 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
57
bundler_args: --without development
68
language: ruby
79
rvm:
@@ -10,14 +12,14 @@ rvm:
1012
- 2.0.0
1113
- 2.1.10
1214
- 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
1619
- ruby-head
1720
matrix:
1821
allow_failures:
1922
- rvm: ruby-head
2023
fast_finish: true
2124
script: bundle exec thor spec
22-
sudo: false
2325
cache: bundler

thor.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
44
require "thor/version"
55

66
Gem::Specification.new do |spec|
7-
spec.add_development_dependency "bundler", "~> 1.0"
7+
spec.add_development_dependency "bundler", ">= 1.0", "< 3"
88
spec.authors = ["Yehuda Katz", "José Valim"]
99
spec.description = "Thor is a toolkit for building powerful command-line interfaces."
1010
spec.email = "[email protected]"

0 commit comments

Comments
 (0)