forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
164 lines (126 loc) · 3.09 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
source 'https://rubygems.org'
# core - base
ruby '2.4.1'
gem 'rails', '5.1.4'
# core - rails additions
gem 'activerecord-session_store'
gem 'composite_primary_keys'
gem 'json'
gem 'rails-observers'
# core - application servers
gem 'puma', group: :puma
gem 'unicorn', group: :unicorn
# core - supported ORMs
gem 'activerecord-nulldb-adapter', group: :nulldb
gem 'mysql2', group: :mysql
gem 'pg', group: :postgres
# core - asynchrous task execution
gem 'daemons'
gem 'delayed_job_active_record'
# core - websocket
gem 'em-websocket'
gem 'eventmachine'
# core - password security
gem 'argon2'
# performance - Memcached
gem 'dalli'
# asset handling
group :assets do
# asset handling - coffee-script
gem 'coffee-rails'
gem 'coffee-script-source'
# asset handling - frontend templating
gem 'eco'
# asset handling - SASS
gem 'sass-rails'
# asset handling - pipeline
gem 'sprockets'
gem 'uglifier'
end
gem 'autoprefixer-rails'
# asset handling - javascript execution for e.g. linux
gem 'execjs'
gem 'libv8'
gem 'therubyracer'
# authentication - provider
gem 'doorkeeper'
gem 'oauth2'
# authentication - third party
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-gitlab'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin-oauth2'
gem 'omniauth-microsoft-office365'
gem 'omniauth-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-weibo-oauth2'
# channels
gem 'koala'
gem 'telegramAPI'
gem 'twitter'
# channels - email additions
gem 'htmlentities'
gem 'mail', '2.6.6'
gem 'mime-types'
gem 'valid_email2'
# feature - business hours
gem 'biz'
# feature - signature diffing
gem 'diffy'
# feature - excel output
gem 'writeexcel'
# feature - device logging
gem 'browser'
# feature - iCal export
gem 'icalendar'
gem 'icalendar-recurrence'
# integrations
gem 'clearbit'
gem 'net-ldap'
gem 'slack-notifier'
gem 'zendesk_api'
# integrations - exchange
gem 'autodiscover', git: 'https://github.com/thorsteneckel/autodiscover.git'
gem 'rubyntlm', git: 'https://github.com/wimm/rubyntlm.git'
gem 'viewpoint'
# Gems used only for develop/test and not required
# in production environments by default.
group :development, :test do
# test frameworks
gem 'rspec-rails'
gem 'test-unit'
# test DB
gem 'sqlite3'
# code coverage
gem 'coveralls', require: false
gem 'simplecov'
gem 'simplecov-rcov'
# UI tests w/ Selenium
gem 'selenium-webdriver', '2.53.4'
# livereload on template changes (html, js, css)
gem 'guard', require: false
gem 'guard-livereload', require: false
gem 'rack-livereload'
gem 'rb-fsevent', require: false
# auto symlinking
gem 'guard-symlink', require: false
# code QA
gem 'coffeelint'
gem 'pre-commit'
gem 'rubocop'
# changelog generation
gem 'github_changelog_generator'
# Setting ENV for testing purposes
gem 'figaro'
# Use Factory Bot for generating random test data
gem 'factory_bot_rails'
# mock http calls
gem 'webmock'
end
# load onw gems for development and testing purposes
local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local')
if File.exist?(local_gemfile)
eval_gemfile local_gemfile
end