forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
266 lines (203 loc) · 5.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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
source 'https://rubygems.org'
# core - base
ruby '3.2.4'
gem 'rails', '~> 7.0.8'
# core - rails additions
gem 'activerecord-import'
gem 'activerecord-session_store'
gem 'bootsnap', require: false
gem 'composite_primary_keys'
gem 'json'
gem 'parallel'
# core - application servers
gem 'puma', group: :puma
# core - supported ORMs
gem 'mysql2', group: :mysql
gem 'pg', '~> 1.5', '>= 1.5.4', group: :postgres
# core - asynchrous task execution
gem 'daemons'
gem 'delayed_job_active_record'
# core - command line interface
gem 'thor'
# core - websocket
gem 'em-websocket'
gem 'eventmachine'
gem 'hiredis'
# version restriction from actioncable-6.1.6.1/lib/action_cable/subscription_adapter/redis.rb
# - check after rails update
gem 'redis', '>= 3', '< 5'
# core - password security
gem 'argon2'
# core - state machine
gem 'aasm'
# core - authorization
gem 'pundit'
# core - graphql handling
gem 'graphql'
gem 'graphql-batch', require: 'graphql/batch'
# core - image processing
gem 'rszr'
# core - use same timezone data on any host
gem 'tzinfo-data'
# performance - Memcached
gem 'dalli', require: false
# Vite is required by the web server
gem 'vite_rails'
# asset handling - config.assets for pipeline
gem 'sprockets-rails'
# Only load gems for asset compilation if they are needed to avoid
# having unneeded runtime dependencies like NodeJS.
group :assets do
# asset handling - javascript execution for e.g. linux
gem 'execjs', require: false
# asset handling - coffee-script
gem 'coffee-rails', require: false
# asset handling - frontend templating
gem 'eco', require: false
# asset handling - SASS
# We cannot use sassc-rails, as it can lead to crashes on modern platforms like CentOS 9.
# See https://jcmaciel.com/apple-silicon-ruby-on-rails-crash-segfault-sassc/
# https://github.com/sass/sassc-ruby/issues/197
# Pin to v5 which does not use sassc internally.
gem 'sass-rails', '~> 5', require: false
# asset handling - pipeline
gem 'sprockets', '~> 3.7.2', require: false
gem 'terser', require: false
gem 'autoprefixer-rails', require: false
end
# authentication - provider
gem 'doorkeeper'
gem 'oauth2'
# authentication - two factor
gem 'rotp', require: false
gem 'webauthn', require: false
# authentication - third party
gem 'omniauth-rails_csrf_protection'
# authentication - third party providers
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-gitlab'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin-oauth2'
gem 'omniauth-microsoft-office365'
gem 'omniauth-saml'
gem 'omniauth-twitter'
gem 'omniauth-weibo-oauth2', git: 'https://github.com/zammad-deps/omniauth-weibo-oauth2', branch: 'unpin-dependencies'
# Rate limiting
gem 'rack-attack'
# channels
gem 'koala'
gem 'telegram-bot-ruby'
gem 'twitter', '~> 7'
gem 'whatsapp_sdk'
# channels - email additions
gem 'email_address'
gem 'htmlentities'
gem 'mail'
gem 'mime-types'
gem 'rchardet', '>= 1.8.0'
# networking libraries were removed from stdlib in ruby 3.1..
gem 'net-ftp', require: false
gem 'net-http', require: false
gem 'net-imap', require: false
gem 'net-pop', require: false
gem 'net-smtp', require: false
# convert from punycode ACE strings to unicode UTF-8 strings and visa versa
gem 'simpleidn'
# feature - business hours
gem 'biz'
# feature - signature diffing
gem 'diffy'
# feature - excel output
gem 'write_xlsx', require: false
# feature - csv import/export
gem 'csv', require: false
# feature - device logging
gem 'browser'
# feature - iCal export
gem 'icalendar'
gem 'icalendar-recurrence'
# feature - phone number formatting
gem 'telephone_number'
# feature - SMS
gem 'messagebird-rest'
gem 'twilio-ruby', require: false
# feature - ordering
gem 'acts_as_list'
# integrations
gem 'clearbit', require: false
gem 'net-ldap'
gem 'slack-notifier', require: false
gem 'zendesk_api', require: false
# integrations - exchange
gem 'autodiscover', git: 'https://github.com/zammad-deps/autodiscover', require: false
gem 'viewpoint', require: false
# integrations - S/MIME
gem 'openssl'
# Translation sync
gem 'byk', require: false
gem 'PoParser', require: false
# Simple storage
gem 'aws-sdk-s3', require: false
# Debugging and profiling
gem 'byebug'
gem 'pry-byebug'
gem 'pry-doc'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'pry-theme'
# monitoring / system report
gem 'macaddr'
# Gems used only for develop/test and not required
# in production environments by default.
group :development, :test do
# watch file changes
gem 'listen'
# test frameworks
gem 'minitest-profile', require: false
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'rspec-retry'
gem 'shoulda-matchers'
gem 'test-unit'
# for testing Pundit authorisation policies in RSpec
gem 'pundit-matchers'
# UI tests w/ Selenium
gem 'capybara'
gem 'selenium-webdriver'
# code QA
gem 'brakeman', require: false
gem 'overcommit'
gem 'rubocop'
gem 'rubocop-faker'
gem 'rubocop-graphql'
gem 'rubocop-inflector'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
# generate random test data
gem 'factory_bot_rails'
gem 'faker'
# mock http calls
gem 'webmock'
# record and replay TCP/HTTP transactions
gem 'tcr', require: false
gem 'vcr', require: false
# handle deprecations in core and addons
gem 'deprecation_toolkit'
# image comparison in tests
gem 'chunky_png'
# Slack helper for testing
gem 'slack-ruby-client', require: false
# self-signed localhost certificates for puma / capybara
gem 'localhost'
# Keycloak admin tool for setting up SAML auth tests
gem 'keycloak-admin', git: 'https://github.com/tschaefer/ruby-keycloak-admin/', branch: 'main', require: false
end
# To permanently extend Zammad with additional gems, you can specify them in Gemfile.local.
Dir['Gemfile.local*'].each do |file|
eval_gemfile file
end