-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
107 lines (99 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
source 'https://rubygems.org'
ruby "~> #{File.read(File.join(__dir__, '.ruby-version')).strip}"
gem 'actionmailer-text', '>= 0.1.1'
gem 'active_model_serializers', '>= 0.10.14'
gem 'active_record_upsert'
gem 'acts_as_paranoid'
# 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', require: false
gem 'browser'
gem 'bundler'
gem 'colorize'
gem 'cssbundling-rails'
gem 'csv'
gem 'devise', '~> 4.9.3'
gem 'dotenv-rails', '~> 2.8', '>= 2.8.1'
gem 'enum_help'
gem 'faraday'
gem 'identity-hostdata', git: 'https://github.com/18F/identity-hostdata.git', tag: 'v4.1.0'
gem 'identity-logging', git: 'https://github.com/18f/identity-logging.git', tag: 'v0.1.0'
gem 'identity_validations', git: 'https://github.com/18f/identity-validations.git', tag: 'v0.9.0'
gem 'jsbundling-rails', '>= 1.2.2'
gem 'json-jwt', '>= 1.15.3'
gem 'jwt'
gem 'kaminari'
gem 'lru_redux'
gem 'newrelic_rpm', '>= 6.14.0'
gem 'nokogiri', '~> 1.16.5'
gem 'omniauth_login_dot_gov', git: 'https://github.com/18f/omniauth_login_dot_gov.git',
branch: 'main'
gem 'omniauth-rails_csrf_protection'
gem 'paper_trail', '~> 15.0', '>= 15.0.0'
gem 'pg'
gem 'propshaft'
gem 'pry-rails'
gem 'puma', '>= 6.4.3'
gem 'pundit', '>= 2.3.1'
gem 'rack-canonical-host', '>= 1.2.0'
gem 'rack-timeout', require: false
# If you update the rails version, please change the targeted
# version in .rubocop.yml
gem 'rails', '~> 7.1.4'
gem 'redacted_struct'
gem 'responders', '~> 3.1', '>= 3.1.1'
gem 'rest-client', '~> 2.1'
gem 'rouge'
gem 'ruby_regex'
gem 'saml_idp', github: '18F/saml_idp', tag: '0.23.0-18f'
gem 'secure_headers', '~> 3.9'
gem 'simple_form', '~> 5.3', '>= 5.3.0'
gem 'uglifier'
gem 'wicked', '~> 2.0'
group :deploy do
gem 'capistrano'
gem 'capistrano-npm'
gem 'capistrano-passenger'
gem 'capistrano-rails'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'bummr', require: false
gem 'listen', '~> 3.3'
gem 'web-console', '>= 4.2.1'
end
group :development, :test do
gem 'bullet', '>= 7.0.5'
gem 'factory_bot_rails', '~> 6.3', '>= 6.3.0'
gem 'i18n-tasks', '>= 1.0.13'
gem 'pry-byebug'
gem 'rspec_junit_formatter'
gem 'rspec-rails', '~> 6.0', '>= 6.0.0'
gem 'rubocop', '~> 1.66.0', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-rails', '>= 2.9', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'axe-core-rspec', '~> 4.2'
gem 'capybara', '>= 3.39.1'
gem 'codeclimate-test-reporter', require: nil
gem 'database_cleaner', '>= 2.0.2'
gem 'fakefs', require: 'fakefs/safe'
gem 'rack_session_access'
gem 'rails-controller-testing', '>= 1.0.5'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'simplecov', '~> 0.22.0'
gem 'simplecov-cobertura'
gem 'sinatra', '~> 4.1.0'
gem 'timecop'
gem 'webmock'
gem 'websocket-driver', '= 0.7.3'
end
group :production do
gem 'rails_serve_static_assets'
end
gem 'autoprefixer-rails', '~> 10.1'