Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ gem 'factory_bot_rails', '>= 6.4.2'

gem 'faker'

gem "rubycritic", require: false
gem "rubycritic", ">= 4.8.1", require: false

gem 'net-smtp', require: false

Expand All @@ -85,7 +85,7 @@ group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'pry-byebug'
gem 'rspec-rails', '>= 6.1.4'
gem 'solargraph'
gem 'solargraph', '>= 0.51.0'
gem 'auto_reload', git: 'https://github.com/puppe1990/auto_reload'
end

Expand All @@ -106,13 +106,13 @@ end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver", ">= 4.11.0"
gem "selenium-webdriver", ">= 4.22.0"
gem "webdrivers"
gem 'shoulda-matchers', '~> 5.3', '>= 5.3.0'
# Easy installation and use of web drivers to run system tests with browsers
gem 'simplecov', '~> 0.21.2'
gem 'vcr'
gem 'webmock', '>= 3.20.0'
gem 'webmock', '>= 3.24.0'
end

group :production do
Expand Down Expand Up @@ -147,9 +147,9 @@ gem 'rack-cors', require: 'rack/cors'
gem 'rails-i18n', '~> 7.0.9'
gem 'rqrcode_png', git: "https://github.com/DCarper/rqrcode_png.git"
gem 'serviceworker-rails'
gem 'rubocop-rails', '>= 2.26.0', require: false
gem 'rubocop-rspec', '>= 2.24.1', require: false
gem 'rubocop-performance', '>= 1.20.0', require: false
gem 'rubocop-rails', '>= 2.26.1', require: false
gem 'rubocop-rspec', '>= 2.31.0', require: false
gem 'rubocop-performance', '>= 1.21.1', require: false
gem 'bling_api', git: 'https://github.com/Purple-Stock/bling_api'

gem "good_job", github: 'bensheldon/good_job', branch: 'main'
Expand Down
Loading