-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
98 lines (76 loc) · 1.98 KB
/
Gemfile
File metadata and controls
98 lines (76 loc) · 1.98 KB
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
source 'https://rubygems.org'
gem 'rails', '~> 7.1.4'
gem 'pg'
gem 'puma'
gem 'sassc-rails'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'sidekiq', '~> 8.0'
gem 'recaptcha', '~> 5.16'
gem 'net-http'
# Front-end tooling
gem 'vite_rails'
# Use Redis adapter to run Action Cable in production
gem 'redis'
gem 'redis-namespace'
# Authentication and authorization
gem 'devise'
# SAML authentication
gem 'devise_saml_authenticatable', '~> 1.9.1'
# Bourbon for sass mixins, and neat for the grid framework
# gem "bourbon", "4.3.4"
# gem "neat", "1.9.0" # Careful, as v2.0 removes some mixins in use.
# Reporting tools
gem 'rollbar'
# File uploads
gem 'kt-paperclip'
gem 'rubyzip', require: 'zip' # ASL files
# PDF generation for completion certificate
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
# Misc
gem 'local_time' # Client-side timezone rendering
gem 'friendly_id' # Slugs for urls
gem 'ckeditor', '~> 4.3.0' # HTML Editor
gem 'cocoon' # Dynamic forms for has-many relationships
gem 'rack-attack' # Prevent botspam and allow white/blacklisting IPs, etc
# AWS sdk for s3
gem 'aws-sdk-s3', '~>1'
# Rack::Proxy for S3 Proxy middleware
gem 'rack-proxy'
# Data migrations
gem 'data_migrate', '~> 9.2.0'
# Invitations
gem 'devise_invitable', '~> 2.0.0'
gem 'date', '~> 3.4.1'
gem 'rolify'
# OAuth2 client configuration
gem 'oauth2', '~> 2.0', '>= 2.0.9'
group :development, :test do
gem 'pry'
gem 'pry-byebug'
gem 'awesome_print'
gem 'bullet'
gem 'listen' # Required by Rails
gem 'rspec-rails'
gem 'faker'
end
group :development do
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'brakeman', require: false
gem 'foreman', require: false
gem 'letter_opener'
gem 'web-console'
gem 'colorize' # For colored spec/capybara output
end
group :test do
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'capybara'
gem 'selenium-webdriver', '~> 4.0'
gem 'mocha'
gem 'simplecov', require: false
gem 'timecop'
end