-
Notifications
You must be signed in to change notification settings - Fork 62
/
Gemfile
247 lines (237 loc) · 6.76 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.3.3'
# Modules
path 'modules' do
gem 'accredited_representative_portal'
gem 'appeals_api'
gem 'apps_api'
gem 'ask_va_api'
gem 'avs'
gem 'banners'
gem 'burials'
gem 'check_in'
gem 'claims_api'
gem 'covid_research'
gem 'covid_vaccine'
gem 'debts_api'
gem 'dhp_connected_devices'
gem 'facilities_api'
gem 'health_quest'
gem 'income_limits'
gem 'ivc_champva'
gem 'meb_api'
gem 'mobile'
gem 'mocked_authentication'
gem 'my_health'
gem 'pensions'
gem 'representation_management'
gem 'simple_forms_api'
gem 'test_user_dashboard'
gem 'travel_pay'
gem 'va_forms'
gem 'va_notify'
gem 'vaos'
gem 'vba_documents'
gem 'veteran'
gem 'veteran_confirmation'
gem 'vye'
end
gem 'rails', '~> 7.1.3'
gem 'aasm'
gem 'activerecord-import'
gem 'activerecord-postgis-adapter'
gem 'addressable'
gem 'aws-sdk-kms'
gem 'aws-sdk-s3', '~> 1'
gem 'aws-sdk-sns', '~> 1'
gem 'betamocks', git: 'https://github.com/department-of-veterans-affairs/betamocks', branch: 'master'
gem 'bgs_ext', git: 'https://github.com/department-of-veterans-affairs/bgs-ext.git', require: 'bgs', ref: '350e45ae69'
gem 'blueprinter'
gem 'bootsnap', require: false
gem 'breakers'
gem 'carrierwave'
gem 'carrierwave-aws'
gem 'clamav-client', require: 'clamav/client'
gem 'combine_pdf'
gem 'config'
gem 'connect_vbms', git: 'https://github.com/adhocteam/connect_vbms', tag: 'v2.1.1', require: 'vbms'
gem 'csv'
gem 'date_validator'
gem 'ddtrace'
gem 'dogstatsd-ruby', '5.6.2'
gem 'dry-struct'
gem 'dry-types'
gem 'ethon', '>=0.13.0'
gem 'faraday', '~> 2.10'
gem 'faraday-follow_redirects'
gem 'faraday-httpclient'
gem 'faraday-multipart'
gem 'faraday-retry'
gem 'faraday-typhoeus'
gem 'fastimage'
gem 'fhir_client', git: 'https://github.com/department-of-veterans-affairs/fhir_client.git', tag: 'v6.0.0'
gem 'fitbit_api'
gem 'flipper'
gem 'flipper-active_record'
gem 'flipper-active_support_cache_store'
gem 'flipper-ui'
gem 'foreman'
gem 'google-api-client'
gem 'google-apis-core'
gem 'google-apis-generator'
gem 'googleauth'
gem 'google-protobuf' # For Datadog Profiling
gem 'govdelivery-tms', git: 'https://github.com/department-of-veterans-affairs/govdelivery-tms-ruby.git', tag: 'v4.0.0', require: 'govdelivery/tms/mail/delivery_method'
gem 'gyoku'
gem 'hexapdf'
gem 'holidays'
gem 'httpclient' # for lib/evss/base_service.rb
gem 'ice_nine'
gem 'iso_country_codes'
gem 'json'
gem 'jsonapi-parser'
gem 'jsonapi-serializer'
gem 'json-schema'
gem 'json_schemer'
gem 'jwe'
gem 'jwt'
gem 'kms_encrypted'
gem 'liquid'
gem 'lockbox'
gem 'mail'
gem 'memoist'
gem 'mimemagic'
gem 'mini_magick'
gem 'net-sftp'
gem 'nkf'
gem 'nokogiri'
gem 'notifications-ruby-client'
gem 'octokit'
gem 'oj' # Amazon Linux `json` gem causes conflicts, but `multi_json` will prefer `oj` if installed
gem 'okcomputer'
gem 'olive_branch'
gem 'operating_hours'
gem 'ox'
gem 'parallel'
gem 'pdf-forms'
gem 'pdf-reader'
gem 'pg'
gem 'pg_query'
gem 'pg_search'
gem 'pkce_challenge'
gem 'prawn'
gem 'prawn-markup'
gem 'prawn-table'
gem 'puma'
gem 'pundit'
gem 'rack'
gem 'rack-attack'
gem 'rack-cors', require: 'rack/cors'
gem 'rack-timeout', require: 'rack/timeout/base'
gem 'rails_semantic_logger'
gem 'rails-session_cookie'
gem 'redis'
gem 'redis-namespace'
gem 'request_store'
gem 'require_all'
gem 'restforce'
gem 'rgeo-geojson'
gem 'roo'
gem 'rswag-ui'
gem 'rtesseract'
gem 'ruby-saml'
gem 'rubyzip'
gem 'savon'
gem 'sentry-ruby'
gem 'shrine'
gem 'sign_in_service'
gem 'slack-notify'
gem 'socksify'
gem 'staccato'
gem 'statsd-instrument'
gem 'strong_migrations'
gem 'swagger-blocks'
# Include the IANA Time Zone Database on Windows, where Windows doesn't ship with a timezone database.
# POSIX systems should have this already, so we're not going to bring it in on other platforms
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'utf8-cleaner'
gem 'vets_json_schema', git: 'https://github.com/department-of-veterans-affairs/vets-json-schema', branch: 'master'
gem 'virtus'
gem 'warden-github'
gem 'will_paginate'
gem 'with_advisory_lock'
group :development, :production do
# This needs to be required as early as possible in the initialization
# process because it starts collecting data on 'require'.
# Only require this in development and production to avoid slowing down tests.
gem 'coverband'
end
group :development do
gem 'guard-rubocop'
gem 'seedbank'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', platforms: :ruby
end
group :test do
gem 'apivore', git: 'https://github.com/department-of-veterans-affairs/apivore', tag: 'v2.1.0.vsp'
gem 'committee-rails'
gem 'mock_redis'
gem 'pdf-inspector'
gem 'rspec_junit_formatter'
gem 'rspec-retry'
gem 'rspec-sidekiq'
gem 'rubocop-junit-formatter'
gem 'rufus-scheduler'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'super_diff'
gem 'vcr'
gem 'webrick'
end
group :development, :test do
gem 'awesome_print' # Pretty print your Ruby objects in full color and with proper indentation
gem 'brakeman'
gem 'bundler-audit'
gem 'byebug', platforms: :ruby # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'danger'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'faker'
# CAUTION: faraday_curl may not provide all headers used in the actual faraday request. Be cautious if using this to
# assist with debugging production issues (https://github.com/department-of-veterans-affairs/vets.gov-team/pull/6262)
gem 'faraday_curl'
gem 'fuubar'
gem 'guard-rspec'
gem 'parallel_tests'
gem 'pry-byebug'
gem 'rack-test', '2.1.0', require: 'rack/test'
gem 'rack-vcr'
gem 'rainbow' # Used to colorize output for rake tasks
gem 'rspec-instrumentation-matcher'
gem 'rspec-its'
gem 'rspec-rails'
gem 'rswag-specs'
gem 'rubocop', require: false
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'rubocop-thread_safety'
gem 'sidekiq', '~> 7.2.0'
gem 'timecop'
gem 'webmock'
gem 'yard'
end
# sidekiq enterprise requires a license key to download. In many cases, basic sidekiq is enough for local development
if (Bundler::Settings.new(Bundler.app_config_path)['enterprise.contribsys.com'].nil? ||
Bundler::Settings.new(Bundler.app_config_path)['enterprise.contribsys.com']&.empty?) &&
ENV.fetch('BUNDLE_ENTERPRISE__CONTRIBSYS__COM', '').empty? && ENV.keys.grep(/DEPENDABOT/).empty?
Bundler.ui.warn 'No credentials found to install Sidekiq Enterprise. This is fine for local development but you may not check in this Gemfile.lock with any Sidekiq gems removed. The README file in this directory contains more information.'
else
source 'https://enterprise.contribsys.com/' do
gem 'sidekiq-ent'
gem 'sidekiq-pro'
end
end