-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
102 lines (91 loc) · 2.57 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~>3.3'
# Specifying rails components to be able to omit unused actioncable
gem 'actionmailbox', '~> 7.2.2.1'
gem 'actionmailer', '~> 7.2.2.1'
gem 'actionpack', '~> 7.2.2.1'
gem 'actiontext', '~> 7.2.2.1'
gem 'actionview', '~> 7.2.2.1'
gem 'activejob', '~> 7.2.2.1'
gem 'activemodel', '~> 7.2.2.1'
gem 'active_model_serializers'
gem 'activerecord', '~> 7.2.2.1'
gem 'activerecord-session_store'
gem 'activestorage', '~> 7.2.2.1'
gem 'activesupport', '~> 7.2.2.1'
gem 'audited'
gem 'auto-session-timeout'
gem 'aws-sdk-cloudwatch'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'bundler', '>= 1.15.0'
gem 'devise', '>= 4.9.3'
gem 'devise-async'
gem 'devise-security'
gem 'dotenv-rails', groups: %i[development test]
gem 'fhir_models'
gem 'health_check'
gem 'jbuilder', '~> 2.7'
gem 'json-jwt', '>= 1.16.6'
gem 'kaminari'
gem 'lograge'
gem 'lookbook', '>= 2.2.1' # install lookbook so it can be deployed in lower environments.
gem 'luhnacy', '~> 0.2.1'
gem 'macaroons'
gem 'newrelic_rpm', '~> 8.10'
gem 'omniauth_openid_connect'
gem 'omniauth-rails_csrf_protection'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 6.4.3'
gem 'rack', '~> 3'
gem 'railties', '~> 7.2.2.1'
gem 'redis', '~> 4.0'
gem 'redis-namespace'
gem 'rexml', '>= 3.3.9'
gem 'sassc-rails', '>= 2.1.2'
gem 'sidekiq', '~> 7.2.4'
gem 'sidekiq_alive', '~> 2.4'
gem 'sidekiq-cron'
gem 'sinatra', '~> 4'
gem 'truemail'
gem 'uglifier', '>= 1.3.0'
gem 'view_component', '~> 3.9'
gem 'webrick'
gem 'yard', '>= 0.9.36'
# < 1.16.5 has a vulnerability, and is required by other gems
gem 'nokogiri', '>= 1.16.5'
gem 'api_client', path: 'vendor/api_client'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'bundler-audit'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'pry'
gem 'pry-nav'
gem 'rspec-rails'
gem 'webmock'
end
group :development do
gem 'rbnacl'
gem 'rbnacl-libsodium'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
# Version 0.18 has a breaking change for sonarqube
gem 'simplecov', '<= 0.17'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
end
group :test do
gem 'axe-core-capybara'
gem 'axe-core-rspec'
gem 'capybara'
gem 'climate_control'
gem 'fakefs', require: 'fakefs/safe'
gem 'fakeredis'
gem 'rails-controller-testing'
gem 'selenium-webdriver'
gem 'timecop'
gem 'webdrivers'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]