This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
134 lines (107 loc) · 2.75 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby File.read(File.expand_path('.ruby-version', __dir__))
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# core
gem 'bootsnap', require: false
gem 'puma'
gem 'rails', github: 'rails/rails'
gem 'redis', '~> 4.2'
gem 'sidekiq'
# database
gem 'pg'
gem 'pghero', '>= 2.7.0'
gem 'pg_search', '>= 2.3.2'
gem 'rein', '>= 5.1.0'
# active-record
gem 'ancestry', '>= 3.0.7'
# active-storage
gem 'aws-sdk-s3', require: false
gem 'image_processing', '~> 1.12.1'
gem 'ruby-vips', '~> 2.0.17'
# authentication
gem 'authy'
gem 'devise', '>= 4.7.1'
gem 'omniauth_openid_connect', '>= 0.3.3'
# authorization
gem 'pundit', '>= 2.1.0'
# ldap
gem 'net-ldap'
# assets: core asset dependencies
# TODO: The following line should be removed when sassc-rails has the latest version of sassc.
gem 'sassc', '~> 2.4.0'
gem 'sassc-rails', '>= 2.1.2'
gem 'coffee-rails'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', github: 'rails/webpacker'
# view helpers: tools for forms, views, etc.
gem 'chartkick', '>= 3.4.0'
gem 'cocoon'
gem 'font-awesome-rails', '>= 4.7.0.5'
gem 'groupdate', '>= 5.0.0'
gem 'pagy'
gem 'simple_form', '>= 5.0.2'
gem 'wicked_pdf', '>= 2.0.2'
# api
gem 'jbuilder', '~> 2.10'
# security
gem 'bcrypt', '~> 3.1.16'
gem 'pwned'
gem 'rack-attack'
gem 'recaptcha'
# validators
gem 'telephone_number'
gem 'valid_email2', '>= 3.2.2'
# error tracking
gem 'rollbar'
gem 'slack-notifier'
# permalinks
gem 'friendly_id', '~> 5.4.0'
# sms
gem 'sms', github: 'omu/sms'
gem 'twilio-ruby'
# log
gem 'lograge', '>= 0.11.2'
# cron
gem 'sidekiq-cron'
group :development, :test do
gem 'brakeman', require: false
gem 'bullet', github: 'flyerhzm/bullet'
gem 'bundler-audit'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails', '>= 2.7.5'
gem 'erb_lint', require: false
gem 'lol_dba', '>= 2.2.0'
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rails', '>= 2.5.2'
gem 'simplecov', require: false
end
group :test do
gem 'capybara'
gem 'minitest-focus'
gem 'simplecov-cobertura'
gem 'webdrivers', '~> 4.4'
gem 'webmock'
end
group :development do
gem 'fit-commit'
gem 'letter_opener'
gem 'listen', '>= 3.0.5', '< 3.3'
gem 'pry-rails'
gem 'rack-mini-profiler'
gem 'ruby-progressbar'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', github: 'rails/web-console'
end
# core plugins
gem 'nokul-support', path: 'plugins/support'
gem 'nokul-tenant', path: 'plugins/tenant/common'
# tenants (won't be listed at Rails.groups)
Dir['plugins/tenant/**/*.gemspec'].each do |gemspec|
next if (name = File.basename(gemspec, '.gemspec')) == 'nokul-tenant'
gem name, path: File.dirname(gemspec), require: false
end
gem 'active_flag', '>= 1.5.0'