-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
88 lines (79 loc) · 2.32 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'activerecord-import'
gem 'activerecord-session_store'
gem 'aws-sdk-cloudwatchlogs', '~> 1'
gem 'aws-sdk-pinpoint', '~> 1'
gem 'aws-sdk-s3', '~> 1'
gem 'aws-sdk-sns', '~> 1'
gem 'bootsnap'
gem 'country_select', '~> 8.0'
gem 'crass', '~> 1.0.4'
gem 'daemons'
gem 'dalli'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'delayed_job_recurring'
gem 'devise', '>= 4.9'
gem 'devise-two-factor'
gem 'dicom'
gem 'jquery-fileupload-rails', '0.4.7'
gem 'jquery-rails'
gem 'kramdown'
gem 'kramdown-parser-gfm'
gem 'mail', '>= 2.8.0'
gem 'mime-types'
gem 'mini_portile2', '>= 2.8.2'
gem 'net-smtp'
gem 'nokogiri', '>= 1.16.2' # address CVE-2024-25062
gem 'pg', '~> 1.4', '>= 1.4.3'
# puma has been moved to all environments and will be included in the production packaging
# this allows EB to run with the latest version of puma, without breaking if the preinstalled version
# is lower or has different dependencies.
# For this to work, Procfile must call puma with `bundle exec`
gem 'puma', '~> 6.0'
gem 'rails', '~> 6.1', '>= 6.1.7'
gem 'redcap', git: 'https://github.com/consected/redcap.git'
# for development, replace with with:
# gem 'redcap', path: '../redcap'
gem 'rqrcode'
gem 'rubyzip', '~> 2.3.0'
gem 'simple_token_authentication', '~> 1.0', git: 'https://github.com/philayres/simple_token_authentication.git'
gem 'strong_password', '~> 0.0.5'
gem 'syslog-logger'
group :development do
gem 'flog', '~> 4.6', '>= 4.6.4'
gem 'listen', '~> 3.7', '>= 3.7.1'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'solargraph-rails', '~> 0.2.0'
gem 'web-console'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'brakeman', require: false
gem 'bundler-audit'
gem 'byebug', '~> 11.1', '>= 11.1.3'
gem 'debug', '>= 1.0.0'
gem 'parallel_tests' # , '3.8.1'
gem 'rspec-rails'
# gem 'ruby-debug-ide'
gem 'spring'
# gem 'spring-commands-parallel-tests'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'rails-controller-testing'
gem 'selenium-webdriver', '~> 4.8'
gem 'shoulda-matchers', '~> 5.1'
gem 'simplecov'
gem 'simplecov-console'
gem 'spring-commands-rspec'
gem 'webmock'
end
group :development, :assets do
gem 'execjs'
gem 'sass-rails', '~> 5.1'
gem 'terser'
end