-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathGemfile
More file actions
64 lines (60 loc) · 1.84 KB
/
Gemfile
File metadata and controls
64 lines (60 loc) · 1.84 KB
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
62
63
64
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
ruby "~> #{File.read(File.join(__dir__, '.ruby-version')).strip}"
gem 'activerecord7-redshift-adapter-pennylane'
gem 'rails', '~> 7.2.1'
gem 'bootsnap', '~> 1.0', require: false
gem 'csv'
gem 'faker'
gem 'good_job', '~> 4.0'
gem 'identity-hostdata', github: '18F/identity-hostdata', tag: 'v4.4.2'
gem 'identity-logging', github: '18F/identity-logging', tag: 'v0.1.1'
gem 'identity_validations', github: '18F/identity-validations', tag: 'v0.7.2'
gem 'puma', '~> 6.0'
gem 'pg'
gem 'rack', '~> 3.1.12'
gem 'redacted_struct'
gem 'tzinfo-data', platforms: %i[ windows jruby ]
gem 'caxlsx', require: false
gem 'simple_xlsx_reader', require: false
gem 'connection_pool'
gem 'redis', '>= 3.2.0'
gem 'jwe'
group :development do
gem 'better_errors', '>= 2.5.1'
gem 'irb'
gem 'rack-mini-profiler', '>= 1.1.3', require: false
end
group :development, :test do
gem 'brakeman', require: false
gem 'bullet', '~> 8.0'
gem 'knapsack'
gem 'listen'
gem 'nokogiri', '~> 1.18.0'
gem 'pg_query', '~> 6.1.0', require: false
gem 'pry-byebug'
gem 'pry-doc', '>= 1.5.0'
gem 'pry-rails'
gem 'psych'
gem 'rexml', '>= 3.4.2'
gem 'rspec', '~> 3.13.0'
gem 'rspec-support', '~> 3.13.1'
gem 'rspec-rails', '~> 7.0'
gem 'rubocop', '~> 1.70.0', require: false
gem 'rubocop-performance', '~> 1.23.0', require: false
gem 'rubocop-rails', '>= 2.27.2', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'bundler-audit', require: false
gem 'simplecov', '~> 0.22.0', require: false
gem 'simplecov-cobertura'
gem 'simplecov_json_formatter'
gem 'factory_bot_rails', '>= 6.2.0'
gem 'rack-test', '>= 1.1.0'
gem 'rspec-retry'
gem 'rspec_junit_formatter'
gem 'shoulda-matchers', '~> 4.0', require: false
gem 'webmock'
gem 'zonebie'
end