-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
151 lines (135 loc) · 4.11 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
source 'https://rubygems.org'
ruby '2.7.8'
# Application config
gem 'dotenv-rails', '~> 2.8'
# Rails
gem 'rails', '~> 6.1.7'
gem 'puma', '~> 6.1'
gem 'rack-timeout', '~> 0.6.3'
gem 'sassc', '~> 2.4'
gem 'sass-rails', '~> 6.0'
gem 'webpacker', '~> 5.4'
gem 'linked-list', '~> 0.0.16'
# The following line is needed because sync is no longer installed by default in Ruby 2.7
gem 'sync'
# Audit model changes
gem 'paper_trail', '~> 13.0'
gem 'paper_trail-association_tracking', '~> 2.2'
# Encrypt sensitive model attributes
gem 'attr_encrypted', '~> 3.1'
# Remove whitespace from model attributes
gem 'strip_attributes', '~> 1.13'
# HTTP security headers
gem 'secure_headers', '~> 6.5'
# Administrator interface
gem 'rails_admin', '~> 3.1'
gem 'rails_admin_history_rollback', '~> 1.0'
# Background job processing
gem 'sidekiq', '~> 6.5'
gem 'sidekiq-cron', '~> 1.10'
gem 'sidekiq-throttled', '~> 0.17.0'
gem 'sidekiq_queue_metrics', '~> 3.0'
# Static page serving
gem 'high_voltage', '~> 3.1'
# Date/time handling
gem 'chronic', '~> 0.10.2'
gem 'chronic_duration', '~> 0.10.6'
gem 'datey', '~> 1.1'
# Humanise some common data types
gem 'humanize_boolean', '~> 0.0.2'
gem 'possessive', '~> 1.0'
# Pagination
gem 'kaminari', '~> 1.2'
# Calendar
gem 'simple_calendar', '~> 2.4'
gem 'icalendar', '~> 2.8'
# View rendering
gem 'haml', '~> 6.1'
gem 'kramdown', require: false
gem 'redcarpet', '~> 3.6'
# Inline email styles
gem 'premailer-rails', '~> 1.12'
# GDPR
gem 'cookies_eu'
# Detection of server platofrm and client browser
gem 'os', '~> 1.1'
gem 'browser', '~> 5.3'
# Connection pooling
gem 'connection_pool', '~> 2.3'
# Camdram API wrapper
gem 'camdram', git: 'https://github.com/CHTJonas/camdram-ruby.git', require: 'camdram/client'
gem 'faraday_middleware', '~> 1.2.0'
# Authentication
gem 'omniauth-camdram', '~> 1.0'
gem 'omniauth-rails_csrf_protection', '~> 0.1.2'
gem 'rotp', '~> 6.2'
gem 'rqrcode', '~> 2.1.2'
gem 'recaptcha', '~> 5.12'
# Authorisation
gem 'cancancan', '~> 3.5'
# Error tracking and reporting
gem 'sentry-ruby', '~> 5.4'
gem 'sentry-rails', '~> 5.4'
gem 'sentry-sidekiq', '~> 5.10'
# DDoS protection and IP blocking
gem 'rack-attack', '~> 6.6'
# User Gravatar profile pictures
gem 'gravatar_image_tag', '~> 1.2'
# Colour text for ANSI terminals
gem 'rainbow', '~> 3.1'
# Use pry console
gem 'pry-rails', '~> 0.3.9'
# Push notifications
gem 'slack-notifier', '~> 2.4'
# Sitemaps
gem 'sitemap_generator', '~> 6.3'
# Database persistence
gem 'pg', '~> 1.4'
gem 'pg_search', '~> 2.3'
# Key/value caching
gem 'redis', '~> 4.8'
gem 'hiredis', '~> 0.6.3'
# Metrics & Logging
gem 'prometheus_exporter', '~> 2.0.8'
gem 'yell', '~> 2.2'
gem 'lograge', '~> 0.12.0'
gem 'health_check', '~> 3.1'
# Systemd integration
gem 'sd_notify', '~> 0.1.1'
# Reverse proxy
gem 'rack-reverse-proxy', '~> 0.12.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# Performance improvements using native extensions
gem 'escape_utils', '~> 1.3'
gem 'fast_blank', '~> 1.0'
gem 'oj', '~> 3.14'
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]
end
group :development do
# Improve upon Rails' default exception pages
gem 'better_errors'
gem 'binding_of_caller'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.9'
# 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'
# Help avoid N+1 queries
gem 'bullet'
# Annotate models
gem 'annotate'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15', '< 4.0'
gem 'selenium-webdriver', '~> 4.8'
gem 'webdrivers', '~> 5.2'
gem 'minitest-retry', '~> 0.2.2', require: false
gem 'codecov', '~> 0.6.0', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]