Browse Source

Let's not load more than we need to

pull/26/head
baarkerlounger 3 years ago
parent
commit
5cb14cb996
  1. 8
      Gemfile
  2. 5
      Gemfile.lock

8
Gemfile

@ -25,14 +25,14 @@ gem "hotwire-rails"
group :development, :test do group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: %i[mri mingw x64_mingw] gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "capybara" gem "capybara", require: false
gem "dotenv-rails" gem "dotenv-rails"
gem "factory_bot_rails" gem "factory_bot_rails"
gem "pry-byebug" gem "pry-byebug"
gem "selenium-webdriver" # gem "selenium-webdriver", require: false
gem "simplecov" gem "simplecov", require: false
%w[rspec-core rspec-expectations rspec-mocks rspec-rails rspec-support].each do |lib| %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
end end

5
Gemfile.lock

@ -267,7 +267,6 @@ GEM
rubocop (~> 1.0) rubocop (~> 1.0)
rubocop-ast (>= 1.1.0) rubocop-ast (>= 1.1.0)
ruby-progressbar (1.11.0) ruby-progressbar (1.11.0)
rubyzip (2.3.2)
sass (3.7.4) sass (3.7.4)
sass-listen (~> 4.0.0) sass-listen (~> 4.0.0)
sass-listen (4.0.0) sass-listen (4.0.0)
@ -277,9 +276,6 @@ GEM
sass (~> 3.5, >= 3.5.5) sass (~> 3.5, >= 3.5.5)
scss_lint-govuk (0.2.0) scss_lint-govuk (0.2.0)
scss_lint scss_lint
selenium-webdriver (3.142.7)
childprocess (>= 0.5, < 4.0)
rubyzip (>= 1.2.2)
semantic_range (3.0.0) semantic_range (3.0.0)
simplecov (0.21.2) simplecov (0.21.2)
docile (~> 1.1) docile (~> 1.1)
@ -353,7 +349,6 @@ DEPENDENCIES
rubocop-performance rubocop-performance
rubocop-rails rubocop-rails
scss_lint-govuk scss_lint-govuk
selenium-webdriver
simplecov simplecov
tzinfo-data tzinfo-data
web-console (>= 4.1.0) web-console (>= 4.1.0)

Loading…
Cancel
Save