forked from ministryofjustice/fb-metadata-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
40 lines (35 loc) · 1.03 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.3'
# Metadata presenter - if you need to be on development you can uncomment
# one of these lines:
# gem 'metadata_presenter',
# github: 'ministryofjustice/fb-metadata-presenter',
# branch: 'bump-json-schema'
# gem 'metadata_presenter', path: '../fb-metadata-presenter'
gem 'metadata_presenter', '3.3.5'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'fb-jwt-auth', '~> 0.10.0'
gem 'kaminari'
gem 'pg', '>= 0.18', '< 2.0'
gem 'prometheus-client', '~> 4.2.1'
gem 'puma', '~> 6.4'
gem 'rails', '~> 7.0.6'
gem 'sentry-rails', '~> 5.14'
gem 'sentry-ruby', '~> 5.14'
gem 'tzinfo-data'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'database_cleaner-active_record'
gem 'factory_bot_rails'
gem 'httparty'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
end
group :development do
gem 'brakeman'
gem 'rubocop'
gem 'rubocop-govuk'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
end