-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
99 lines (88 loc) · 2.85 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~>3.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# 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 'bundler', '>= 1.15.0'
gem 'dotenv-rails', groups: [:development, :test]
gem 'puma', '~> 6.4.3'
gem 'redis', '~> 4.0'
gem 'luhnacy', '~> 0.2.1'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'sidekiq', '~> 7.2.4'
gem 'turbolinks', '~> 5'
gem 'newrelic_rpm', '~> 8.10'
gem 'rexml', '>= 3.3.9'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'sassc-rails', '>= 2.1.2'
gem 'uglifier', '>= 1.3.0'
gem 'pg', '>= 0.18', '< 2.0'
gem 'csv'
gem 'devise'
gem 'devise-async'
gem 'devise-security'
gem 'health_check'
gem 'omniauth-github', '~> 2.0.0'
gem 'octokit' # can be removed once we move past github omniauth
gem 'fhir_models'
gem 'sidekiq_alive', '~> 2.4'
gem 'rack', '~> 3'
gem 'redis-namespace'
gem 'kaminari'
gem 'active_model_serializers'
gem 'lograge'
gem 'macaroons'
gem 'sprockets-rails', '>= 3.4.2'
gem 'truemail'
# < 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 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry'
gem 'pry-nav'
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'database_cleaner-active_record', '~> 2.2'
gem 'bundler-audit'
gem 'webmock'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.2'
gem 'rbnacl-libsodium'
gem 'rbnacl'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'simplecov', '<= 0.17'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
gem 'letter_opener'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'climate_control'
gem 'rails-controller-testing'
gem 'selenium-webdriver'
gem 'fakefs', require: 'fakefs/safe'
gem 'fakeredis'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]