forked from yeti-switch/yeti-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
126 lines (105 loc) · 3.16 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Core
gem 'active_record_extended'
gem 'activemodel-serializers-xml'
gem 'activerecord-import'
gem 'pg'
gem 'pg_advisory_lock', git: 'https://github.com/didww/pg_advisory_lock.git'
gem 'pg_sql_caller', git: 'https://github.com/didww/pg_sql_caller.git'
gem 'rack', '2.1.4' # https://github.com/rack/rack/issues/1628
gem 'rails', '~> 5.2.6'
gem 'responders'
gem 'secondbase', git: 'https://github.com/yeti-switch/secondbase.git'
# Authentication
gem 'activeldap'
gem 'd3-rails', '3.5.2'
gem 'devise', '>= 4.6.0'
gem 'devise_ldap_authenticatable', github: 'cschiewek/devise_ldap_authenticatable', branch: 'default'
gem 'net-ldap', '~> 0.16.0'
# Seamless JWT authentication for Rails API
gem 'knock', github: 'nsarno/knock'
# ActiveAdmin
gem 'active_admin_date_range_preset', github: 'workgena/active_admin_date_range_preset'
gem 'active_admin_datetimepicker'
gem 'active_admin_import'
gem 'active_admin_scoped_collection_actions'
gem 'active_admin_theme'
gem 'activeadmin'
gem 'draper'
gem 'novus-nvd3-rails', github: 'yeti-switch/nvd3-community-rails'
gem 'ransack'
gem 'jrpc', github: 'didww/jrpc'
gem 'active_admin_sidebar', '1.1.0'
# XLS generation
gem 'excelinator', github: 'livingsocial/excelinator'
# REST API
gem 'jsonapi-resources', '0.9.1.beta1'
# gem 'activeadmin_async_export'
# Ext
gem 'validates_timeliness'
# Object oriented authorization for Rails applications
gem 'pundit'
gem 'paper_trail'
gem 'parallel'
# Assets
gem 'coffee-rails', '~> 4.0'
gem 'compass-rails', '~> 3.0.2'
gem 'sass-rails'
gem 'sprockets'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'chosen-rails', '1.5.2'
gem 'font-awesome-rails'
gem 'jquery-rails'
gem 'jquery-tablesorter'
gem 'jquery-ui-rails'
gem 'rails-html-sanitizer', '~> 1.0.3'
gem 'sass-globbing'
gem 'therubyracer', '~> 0.12.1'
gem 'uglifier', '>= 1.3'
# Server Tools
gem 'daemons'
gem 'delayed_job_active_record'
gem 'odf-report', github: 'yeti-switch/odf-report', branch: 'master-2018'
gem 'puma', '~> 4.3'
gem 'puma_worker_killer'
gem 'syslog-logger'
gem 'zip-zip'
gem 'pgq_prometheus', require: false
gem 'prometheus_exporter', github: 'didww/prometheus_exporter', branch: 'didww', require: false
gem 'sentry-raven', require: false
group :development do
gem 'annotate'
gem 'sourcify'
end
group :development, :test do
gem 'awesome_print'
gem 'bullet'
gem 'byebug'
gem 'thin'
gem 'bundler-audit', require: false
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'parallel_tests'
gem 'rspec-rails'
gem 'rspec_api_documentation', '~> 5.0.0'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
end
gem 'apitome', '~> 0.1.0'
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'capybara_active_admin', github: 'activeadmin-plugins/capybara_active_admin', require: false
gem 'cuprite'
gem 'ferrum'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'simplecov', '~> 0.21.2', require: false
gem 'simplecov-lcov', '~> 0.8.0', require: false
gem 'webdrivers', '~> 4.0'
gem 'webmock'
end
gem 'bootsnap', require: false