From 6b0bf4c5aa992327c093d540d4f504bcf2963378 Mon Sep 17 00:00:00 2001 From: Ryan Boland Date: Aug 19 2019 18:27:47 +0000 Subject: Merge pull request #139 from glebm/install-bundler Install bundler in Docker for `rake gem:native` --- diff --git a/Rakefile b/Rakefile index edebc7b..dcacd38 100644 --- a/Rakefile +++ b/Rakefile @@ -38,7 +38,7 @@ task 'gem:native' do # Only one version should be specified, as the shared library is Ruby-agnostic. # # g++-multilib is installed for 64->32-bit cross-compilation. - RakeCompilerDock.sh "sudo apt-get install -y g++-multilib && bundle && gem i rake --no-document && "\ + RakeCompilerDock.sh "sudo apt-get install -y g++-multilib && gem i rake bundler --no-document && bundle && "\ "rake clean && rake cross native gem MAKE='nice make -j`nproc`' "\ "RUBY_CC_VERSION=2.6.0 CLEAN=1" end