-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
50 lines (44 loc) · 1.3 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
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
ruby '~> 3.3'
gem 'rails', '~> 7.1.0'
gem 'activerecord-import', '>= 1.0.2'
# pod identity requires 3.188.0
# https://docs.aws.amazon.com/eks/latest/userguide/pod-id-minimum-sdk.html
gem 'aws-sdk-core', '>= 3.188.0'
gem 'aws-sdk-s3'
gem 'bloomfilter-rb'
gem 'csv'
gem 'redis'
gem 'identity-hostdata', github: '18F/identity-hostdata', tag: 'v4.0.0'
gem 'identity-logging', github: '18F/identity-logging', tag: 'v0.1.0'
gem 'mini_cache'
gem 'newrelic_rpm', '~> 8.0'
gem 'pg'
gem 'pry-rails'
gem 'puma'
gem 'bootsnap', '~> 1.0', require: false
gem 'redacted_struct', '~> 2.0'
gem 'rgl'
group :development, :test do
gem 'bullet', '~> 7.1.2'
gem 'brakeman', require: false
gem 'listen'
gem 'pry-byebug'
gem 'rspec-rails', '~> 6.0'
gem 'rubocop', require: false
gem 'rubocop-rails', '>= 2.19.0', require: false
gem 'rubocop-performance', '~> 1.17', require: false
end
group :development do
gem 'better_errors', '>= 2.5.1'
end
group :test do
gem 'bundler-audit', require: false
gem 'factory_bot_rails', '>= 5.2.0'
gem 'rails-controller-testing', '>= 1.0.4'
gem 'rspec_junit_formatter'
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.3', require: false
gem 'simplecov', '>= 0.13.0'
gem 'webmock'
end