File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -87,10 +87,10 @@ matrix:
87
87
- rvm : 2.4.6
88
88
env : RAILS_VERSION='~> 4.2.0'
89
89
- rvm : 2.4.6
90
- env : RAILS_VERSION=4-2-stable
90
+ env : RAILS_VERSION='~> 4.2.0'
91
91
- rvm : 2.3.8
92
92
env : RAILS_VERSION='~> 4.2.0'
93
93
- rvm : 2.3.8
94
- env : RAILS_VERSION=4-2-stable
94
+ env : RAILS_VERSION='~> 4.2.0'
95
95
96
96
fast_finish : true
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ source script/functions.sh
8
8
if ruby -e " exit(ENV['RAILS_VERSION'].scan(/\d+\.\d+.\d+/)[0].to_f < 5)" ; then
9
9
# On Rails versions less than 5, Bundler 2.0 is not supported
10
10
echo " Warning dowgrading to older version of Bundler"
11
+ echo " Current bundler versions installed: ` gem list | grep ' ^bundler (' ` "
11
12
12
13
gem uninstall -aIx bundler || echo " Warning error occured removing bundler via gem"
13
14
14
- # this only works on Ruby 2.3 which is luckily the version we need to fix
15
- if is_ruby_23; then
16
- rvm @global do gem uninstall -aIx bundler || echo " Warning error occured removing bundler via rvm"
17
- fi
15
+ rvm @global do gem uninstall -aIx bundler || echo " Warning error occured removing bundler via rvm"
16
+
17
+ echo " Bundler version list after uninstall: ` gem list | grep ' ^bundler (' ` "
18
18
19
19
gem install bundler -v ' 1.17.3'
20
20
fi
You can’t perform that action at this time.
0 commit comments