From aeaaff207fdff8629a62e65dc032182e0e920276 Mon Sep 17 00:00:00 2001 From: Cess Date: Wed, 24 Jun 2020 22:28:28 +0300 Subject: [PATCH] install bundler in before section --- .travis.yml | 2 ++ Gemfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2be787d2a89..ab715209e9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,8 @@ env: - RAILS_SYSTEM_TESTING_SCREENSHOT=simple before_install: + - gem update --system + - gem install bundler - sudo wget https://chromedriver.storage.googleapis.com/73.0.3683.68/chromedriver_linux64.zip - sudo unzip chromedriver_linux64.zip -d /usr/local/bin/ - sudo chmod +x /usr/local/bin/chromedriver diff --git a/Gemfile b/Gemfile index 4f58376c1fe..a9a5d99fa64 100644 --- a/Gemfile +++ b/Gemfile @@ -108,8 +108,8 @@ end group :test, :development do gem 'capybara' gem 'ci_reporter_test_unit' - gem 'simplecov', '~> 0.18.2', require: false - gem 'codecov', '~> 0.1.16', require: false + gem 'simplecov', require: false + gem 'codecov', require: false gem 'jasmine-jquery-rails' gem 'jasmine-rails' gem 'json_expressions'