-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (50 loc) · 1.63 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(".ruby-version").strip
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.2.2"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.5"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 6.4"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
gem "govuk_notify_rails", "~> 3.0.0"
gem "httparty"
gem "jwt", "~> 2.9.3"
gem "laa_crime_forms_common", "~> 0.5.0", github: "ministryofjustice/laa-crime-forms-common"
gem "lograge"
gem "logstash-event"
gem "oauth2"
gem "ostruct"
gem "prometheus_exporter"
gem "scenic"
gem "sentry-rails", ">= 5.17.2"
gem "sentry-ruby"
gem "sidekiq", "~> 7.3"
gem "sidekiq_alive", "~> 2.4"
gem "sidekiq-cron"
gem "with_advisory_lock"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "factory_bot_rails", ">= 6.2.0"
gem "pry-nav"
gem "pry-rescue"
gem "pry-stack_explorer"
gem "rspec-rails"
gem "rubocop-govuk", require: false
gem "rubocop-performance"
gem "simplecov", require: false
end
group :test do
gem "rspec_junit_formatter"
gem "webmock", ">= 3.13.0"
end
group :development do
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end