Commit 6e9330a4365ca22484421ac7d03c446cce4b57dc

Authored by Diego Araújo
1 parent cb406500
Exists in colab and in 2 other branches master, stable

Downgrade rubygems version if ruby 2.1.5

The issue https://github.com/rubygems/rubygems/issues/1220 shows the
problem when using ruby 2.1.5 in association with rubygems 2.5.1 to
build prezento. This is the same fix as we did on kalibro client.
Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
.travis.yml
... ... @@ -7,6 +7,9 @@ rvm:
7 7 addons:
8 8 postgresql: "9.3"
9 9  
  10 +before_install:
  11 + - if ruby --version | cut -d ' ' -f 2 | grep -q 2.1.5p273 ; then gem update --system 2.4.8; fi
  12 +
10 13 before_script:
11 14 - git clone https://github.com/mezuro/kalibro_install.git -b v4.2 kalibro_install
12 15 - export KALIBRO_CONFIGURATIONS_START=0
... ...