-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGemfile
71 lines (56 loc) · 1.52 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~>7.0.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 5.6'
group :development do
# shut up icon requests
gem 'listen'
gem 'quiet_safari'
gem 'web-console'
end
group :production do
gem 'mini_racer'
gem 'exception_notification'
gem 'azure-storage-blob', '~> 2.0', require: false # active storage client
end
# assets
gem 'sprockets-rails'
gem 'sass-rails'
# slug generator
gem 'friendly_id'
# connectivity
gem 'git', '1.13.0' # git for ingesting course materials
gem 'rack-cas' # login system
gem 'openid_connect'
gem 'curb' # webdav client for uploading archival files
gem 'rest-client' # for sending submits to the autocheck server
# manages settings in database
gem 'rails-settings-cached'
# scheduled email sending for grades
gem 'rufus-scheduler'
# content
gem 'kramdown'
gem 'asciidoctor'
gem 'front_matter_parser'
gem 'katex', '~> 0.10.0'
gem 'kramdown-math-katex'
# XLSX generation
gem 'rubyzip', '~> 2.3.0', require: 'zip'
gem 'caxlsx_rails'
# front-end
gem 'bootstrap', '~> 5.3.0.alpha3'
gem 'autoprefixer-rails', '~> 10.2.5'
gem 'coderay'
gem 'groupdate'
gem 'importmap-rails'
gem 'stimulus-rails'
gem 'turbo-rails'
# used by ActiveStorage
gem 'image_processing', '~> 1.12'
gem 'active_storage-send_zip'