forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
116 lines (85 loc) · 1.88 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
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '4.2.7.1'
gem 'rails-observers'
gem 'activerecord-session_store'
# Bundle edge Rails instead:
#gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'json'
# Supported DBs
gem 'mysql2', group: :mysql
gem 'pg', group: :postgres
group :assets do
gem 'sass-rails' #, github: 'rails/sass-rails'
gem 'coffee-rails'
gem 'coffee-script-source'
gem 'sprockets'
gem 'uglifier'
gem 'eco'
end
gem 'autoprefixer-rails'
gem 'oauth2'
gem 'omniauth'
gem 'omniauth-oauth2'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-gitlab'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin-oauth2'
gem 'omniauth-twitter'
gem 'twitter'
gem 'koala'
gem 'mail'
gem 'email_verifier'
gem 'htmlentities'
gem 'mime-types'
gem 'biz'
gem 'delayed_job_active_record'
gem 'daemons'
gem 'simple-rss'
# e. g. on linux we need a javascript execution
gem 'libv8'
gem 'execjs'
gem 'therubyracer'
require 'erb'
require 'yaml'
gem 'net-ldap'
gem 'writeexcel'
gem 'icalendar'
gem 'browser'
gem 'phony'
# integrations
gem 'slack-notifier'
gem 'clearbit'
gem 'zendesk_api'
# event machine
gem 'eventmachine'
gem 'em-websocket'
gem 'diffy'
# Gems used only for develop/test and not required
# in production environments by default.
group :development, :test do
gem 'test-unit'
gem 'spring'
gem 'sqlite3'
# code coverage
gem 'simplecov'
gem 'simplecov-rcov'
# UI tests w/ Selenium
gem 'selenium-webdriver'
# livereload on template changes (html, js, css)
gem 'guard', require: false
gem 'guard-livereload', require: false
gem 'rack-livereload'
gem 'rb-fsevent', require: false
# code QA
gem 'pre-commit'
gem 'rubocop'
gem 'coffeelint'
end
gem 'puma'
# load onw gem's
local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local')
if File.exist?(local_gemfile)
eval_gemfile local_gemfile
end