-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
93 lines (82 loc) · 2.44 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~>3.3'
# Anchored versions, do not bump without testing
# 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 'activerecord', '~> 7.2.2.1'
gem 'activestorage', '~> 7.2.2.1'
gem 'activesupport', '~> 7.2.2.1'
gem 'railties', '~> 7.2.2.1'
gem 'csv'
gem 'bundler', '>= 1.15.0'
gem 'sprockets-rails', '>= 3.4.2'
gem 'puma', '~> 6.4.3'
gem 'redis', '~> 4.0'
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'
gem 'kramdown', '~> 2.3', '>= 2.3.1'
gem 'luhnacy', '~> 0.2.1'
gem 'sidekiq', '~> 7.2.4'
gem 'newrelic_rpm', '~> 8.10'
gem 'rexml', '>= 3.3.9'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'sassc-rails', '>= 2.1.2'
gem 'uglifier', '>= 1.3.0'
gem 'pg', '>= 0.18', '< 2.0'
gem 'devise', '>= 4.9.3'
gem 'devise-async', '>= 1.0.0'
gem 'devise-security', '>= 0.17.0'
gem 'truemail'
gem 'health_check', '>= 3.1.0'
gem 'fhir_models'
gem 'sidekiq_alive', '~> 2.4'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'kaminari', '>= 1.2.2'
gem 'active_model_serializers', '>= 0.10.13'
gem 'macaroons'
gem 'lograge', '>= 0.12.0'
gem 'rack', '~> 3'
gem 'redis-namespace'
gem 'bootstrap-table-rails'
# < 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
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry'
gem 'pry-nav'
gem 'rspec-rails', '>= 5.1.2'
gem 'database_cleaner-active_record', '~> 2.2'
gem 'capybara', '>= 3.37.1'
gem 'factory_bot_rails', '>= 6.2.0'
gem 'faker'
# Version 0.18 has a breaking change for sonarqube
gem 'simplecov', '<= 0.17'
gem 'vcr'
gem 'webmock', '>= 3.13.0'
gem 'bundler-audit'
gem 'brakeman'
gem 'dotenv-rails', '>= 2.8.1'
end
group :test do
gem 'selenium-webdriver'
gem 'climate_control'
gem 'rails-controller-testing', '>= 1.0.5'
gem 'fakefs', require: 'fakefs/safe'
gem 'fakeredis'
end
group :development do
gem 'web-console', '>= 4.2.0'
gem 'listen', '~> 3.5'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'letter_opener', '>= 1.7.0'
gem 'letter_opener_web', '~> 2.0', '>= 2.0.0'
end