-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (42 loc) · 1.28 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read('.ruby-version').chomp
gem 'pg', '~> 1.5.6'
gem 'puma'
gem 'rails', '~> 7.1.4', '>= 7.1.4.1'
gem 'grape', '~> 2.1.3'
gem 'grape-entity', '~> 1.0.1'
gem 'grape_logging'
gem 'kaminari-activerecord'
# Monitoring
gem 'prometheus_exporter'
# Exceptions notifications
gem 'sentry-rails', '>= 5.18.1'
gem 'sentry-ruby'
gem 'stackprof'
# Datastore API authentication
gem 'moj-simple-jwt-auth', '0.1.0'
# AWS services
gem 'aws-sdk-s3'
gem 'aws-sdk-sns'
gem 'laa-criminal-legal-aid-schemas',
github: 'ministryofjustice/laa-criminal-legal-aid-schemas',
tag: 'v1.5.4'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'byebug'
gem 'debug', platforms: %i[mri mingw x64_mingw]
# Issue with freezing ENV with dotenv-rails v3 https://github.com/bkeepers/dotenv/issues/482
gem 'dotenv-rails', '~> 2.8.1'
gem 'pry'
gem 'rspec-rails', '>= 6.1.1'
end
group :test do
gem 'brakeman'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'simplecov', require: false
gem 'webmock', '>= 3.23.1'
end