From 5cb14cb99696407d0934e5885907dabfe67f0a70 Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Wed, 29 Sep 2021 14:22:17 +0100 Subject: [PATCH] Let's not load more than we need to --- Gemfile | 8 ++++---- Gemfile.lock | 5 ----- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index ea7da5280..492278eab 100644 --- a/Gemfile +++ b/Gemfile @@ -25,14 +25,14 @@ gem "hotwire-rails" group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem "byebug", platforms: %i[mri mingw x64_mingw] - gem "capybara" + gem "capybara", require: false gem "dotenv-rails" gem "factory_bot_rails" gem "pry-byebug" - gem "selenium-webdriver" - gem "simplecov" + # gem "selenium-webdriver", require: false + gem "simplecov", require: false %w[rspec-core rspec-expectations rspec-mocks rspec-rails rspec-support].each do |lib| - gem lib, git: "https://github.com/rspec/#{lib}.git", branch: "main" + gem lib, git: "https://github.com/rspec/#{lib}.git", branch: "main", require: false end end diff --git a/Gemfile.lock b/Gemfile.lock index 89aa67f6f..d09c26ade 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -267,7 +267,6 @@ GEM rubocop (~> 1.0) rubocop-ast (>= 1.1.0) ruby-progressbar (1.11.0) - rubyzip (2.3.2) sass (3.7.4) sass-listen (~> 4.0.0) sass-listen (4.0.0) @@ -277,9 +276,6 @@ GEM sass (~> 3.5, >= 3.5.5) scss_lint-govuk (0.2.0) scss_lint - selenium-webdriver (3.142.7) - childprocess (>= 0.5, < 4.0) - rubyzip (>= 1.2.2) semantic_range (3.0.0) simplecov (0.21.2) docile (~> 1.1) @@ -353,7 +349,6 @@ DEPENDENCIES rubocop-performance rubocop-rails scss_lint-govuk - selenium-webdriver simplecov tzinfo-data web-console (>= 4.1.0)