Gemfile
source 'https://rubygems.org' # Use CoffeeScript for .js.coffee assets and views# gem 'coffee-rails', '~> 4.0.0' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuildergem 'jbuilder', '~> 2.10' # Use jquery as the JavaScript librarygem 'jquery-rails', '~> 4.4' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'gem 'rails', '7.2.2.1'gem 'responders', '~> 3.0' # Azure deployment so we need thisgem 'azure_env_secrets', git: 'https://github.com/hmcts/azure_env_secrets.git', tag: 'v1.0.1'gem 'et_azure_insights', '0.3.2', git: 'https://github.com/hmcts/et-azure-insights.git', tag: 'v0.3.2'#gem 'et_azure_insights', path: '../../../et_azure_insights'gem 'application_insights', git: 'https://github.com/microsoft/ApplicationInsights-Ruby.git', ref: '5db6b4' # Use SCSS for stylesheets# See https://github.com/sstephenson/execjs#readme for more supported runtimes# gem 'therubyracer', platforms: :ruby # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinksgem 'turbolinks', '~> 5.2' # Use puma as the app servergem 'puma', '~> 6.3' # Use null db adapter for the form objectsgem 'activerecord-nulldb-adapter', '~> 1.0' # Use dotenv for convenience in all environmentsgem 'dotenv-rails', '~> 3.1.0' # Gov uk notify servicegem 'notifications-ruby-client', '~> 5.3'gem 'govuk_notify_rails', git: 'https://github.com/hmcts/govuk_notify_rails.git', tag: 'v3.0.0' # bundle exec rake doc:rails generates the API under doc/api.# gem 'sdoc', '~> 0.4.0', group: :doc gem 'rackup', '1.0.0', require: false group :development, :test do gem 'awesome_print', '~> 1.9' gem 'better_errors', '~> 2.9' gem 'binding_of_caller', '~> 1.0' gem 'brakeman', '~> 6.1.2' gem 'bundler-audit', '~> 0.9.1' gem 'capybara', '~> 3.34' gem 'factory_bot_rails', '~> 6.2' gem 'gov_fake_notify', '~> 2.0' gem 'launchy' gem 'listen', '~> 3.7' gem 'pry-rails', '~> 0.3' gem 'rspec-its', '~> 1.2', require: 'rspec/its' gem 'rspec-rails', '~> 6.0' gem 'rspec_junit_formatter', '~> 0.6.0' gem 'rubocop', '~> 1.8', :require => false gem 'rubocop-rails', require: false gem 'rubocop-rspec', '~> 3.3', :require => false gem 'rubocop-capybara', '~> 2.21', :require => false gem 'rubocop-factory_bot', '~> 2.26', :require => false gem 'rubocop-rspec_rails', '~> 2.30', :require => false gem 'shoulda-matchers', '~> 6.2' gem 'spring', '~> 4.0' gem 'parallel_tests', '~> 4.6.0' gem 'simplecov', '~> 0.21' gem 'webdrivers', '~> 5.0' gem 'webrick', '~> 1.4', '>= 1.4.2' gem 'et_full_system_control', git: 'https://github.com/hmcts/et-full-system-control.git'end group :test do gem 'cuprite', '~> 0.10' gem 'webmock', '~> 3.11' gem 'database_cleaner', '~> 2.0' gem 'poltergeist', '~> 1.18' gem 'capybara-screenshot', '~> 1.0' gem 'site_prism', '~> 5.0.1' gem 'selenium-webdriver', '~> 4.3', '< 4.11' gem 'rails-controller-testing', '~> 1.0' gem 'climate_control', '~> 1.0' gem 'et_test_helpers', git: 'https://github.com/hmcts/et_test_helpers.git', tag: 'v1.3.2'end group :assets do # Use Uglifier as compressor for JavaScript assets gem 'uglifier', '~> 4.1'end group :production, :test, :development do gem "sentry-ruby", "~> 5.17" gem "sentry-rails", "~> 5.17" gem "sentry-sidekiq", "~> 5.17"end gem 'activeadmin', '~> 3.2'gem 'base32_pure', '~> 0.1'gem 'bcrypt', '~> 3.1'gem 'bitmask_attributes', '~> 1.0' gem 'pg', '~> 1.1'gem 'redcarpet', '~> 3.5'gem 'slim-rails', '~> 3.2'gem 'sidekiq', '< 7'gem 'sidekiq-failures', '~> 1.0'gem 'sidekiq_alive', '~> 2.1'gem 'uk_postcode', '~> 2.1'gem 'email_validator', '~> 2.2'gem 'typhoeus', '~> 1.4'gem 'invisible_captcha', '~> 2.0'gem 'et_gds_design_system', git:'https://github.com/hmcts/et_gds_design_system.git', tag: 'v6.0.2' gem "webpacker", "~> 5.4"gem "devise", "~> 4.8"gem 'i18n', '~> 1.14.0' # Temporary gem "rack-attack", "~> 6.7" gem "stimulus-rails", "~> 1.3"