2020-03-11 16:18:17 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
2023-02-24 17:26:55 +01:00
|
|
|
gem 'rails', '~> 6.1'
|
2020-03-31 11:28:00 +02:00
|
|
|
# Used by rails 5.2 to reduce the app boot time by over 50%
|
|
|
|
gem 'bootsnap'
|
2019-09-23 09:40:09 +02:00
|
|
|
# Use Puma as web server
|
2023-02-24 17:26:55 +01:00
|
|
|
gem 'puma', '6.1.0'
|
2023-01-30 16:18:51 +01:00
|
|
|
gem 'shakapacker', '6.5.5'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2023-03-22 16:05:25 +01:00
|
|
|
# rails 6 compatibility with ruby 3 (may not be required after upgrade to rails 7)
|
|
|
|
gem 'matrix'
|
|
|
|
gem 'net-imap', require: false
|
|
|
|
gem 'net-pop', require: false
|
|
|
|
gem 'net-smtp', require: false
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
2016-06-20 19:41:05 +02:00
|
|
|
gem 'jbuilder', '~> 2.5'
|
|
|
|
gem 'jbuilder_cache_multi'
|
2020-09-07 15:52:05 +02:00
|
|
|
gem 'json', '>= 2.3.0'
|
2021-12-20 13:40:19 +01:00
|
|
|
gem 'jsonpath'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
gem 'forgery'
|
2023-02-24 17:26:55 +01:00
|
|
|
gem 'responders', '~> 3.0'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
2016-03-23 18:39:41 +01:00
|
|
|
# comment over to use visual debugger (eg. RubyMine), uncomment to use manual debugging
|
|
|
|
# gem 'byebug'
|
2020-03-13 17:10:38 +01:00
|
|
|
gem 'dotenv-rails'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
2020-03-11 16:18:17 +01:00
|
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
2018-11-21 15:48:45 +01:00
|
|
|
gem 'active_record_query_trace'
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'awesome_print'
|
2022-01-11 16:04:14 +01:00
|
|
|
gem 'bullet'
|
2020-09-08 08:30:02 +02:00
|
|
|
gem 'coveralls_reborn', '~> 0.18.0', require: false
|
2018-11-21 15:48:45 +01:00
|
|
|
gem 'foreman'
|
2023-03-22 17:01:46 +01:00
|
|
|
gem 'web-console', '>= 4.2.0'
|
2018-11-21 15:48:45 +01:00
|
|
|
# Preview mail in the browser
|
2020-03-11 16:18:17 +01:00
|
|
|
gem 'listen', '~> 3.0.5'
|
2022-08-23 11:36:57 +02:00
|
|
|
gem 'overcommit'
|
2019-01-22 11:24:00 +01:00
|
|
|
gem 'rb-readline'
|
2020-03-11 16:18:17 +01:00
|
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
|
|
gem 'railroady'
|
2022-07-19 12:13:50 +02:00
|
|
|
gem 'rubocop', '~> 1.31', require: false
|
|
|
|
gem 'rubocop-rails', require: false
|
2020-03-11 16:18:17 +01:00
|
|
|
gem 'spring'
|
|
|
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
|
|
|
gem 'database_cleaner'
|
|
|
|
gem 'faker'
|
2016-04-04 17:42:45 +02:00
|
|
|
gem 'minitest-reporters'
|
2016-12-01 11:37:09 +01:00
|
|
|
gem 'pdf-reader'
|
2022-08-23 11:36:57 +02:00
|
|
|
gem 'rubyXL'
|
2023-03-22 16:05:25 +01:00
|
|
|
gem 'vcr', '~> 6.1.0'
|
2018-11-21 15:48:45 +01:00
|
|
|
gem 'webmock'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
gem 'seed_dump'
|
|
|
|
|
|
|
|
gem 'pg'
|
2020-06-22 11:25:35 +02:00
|
|
|
gem 'pg_search'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2020-09-09 11:54:49 +02:00
|
|
|
# authentication
|
2023-02-24 17:26:55 +01:00
|
|
|
gem 'devise', '>= 4.9'
|
2022-08-31 21:13:40 +02:00
|
|
|
gem 'omniauth', '~> 1.9.2'
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'omniauth-oauth2'
|
2022-03-28 12:27:33 +02:00
|
|
|
gem 'omniauth_openid_connect'
|
2019-10-01 17:14:16 +02:00
|
|
|
gem 'omniauth-rails_csrf_protection', '~> 0.1'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'rolify'
|
|
|
|
|
2020-09-09 11:54:49 +02:00
|
|
|
# pagination
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'kaminari'
|
|
|
|
|
|
|
|
# Image processing ruby wrapper for ImageMagick
|
|
|
|
gem 'mini_magick'
|
|
|
|
# upload files
|
|
|
|
gem 'carrierwave'
|
|
|
|
|
|
|
|
# slug url
|
|
|
|
gem 'friendly_id', '~> 5.1.0'
|
|
|
|
|
|
|
|
# state machine
|
|
|
|
gem 'aasm'
|
|
|
|
|
|
|
|
# Background job processing
|
2020-06-09 16:23:07 +02:00
|
|
|
gem 'sidekiq', '>= 6.0.7'
|
2015-05-05 03:10:25 +02:00
|
|
|
# Recurring jobs for Sidekiq
|
2022-03-09 14:33:50 +01:00
|
|
|
gem 'sidekiq-scheduler'
|
2022-06-06 11:02:05 +02:00
|
|
|
gem 'sidekiq-unique-jobs', '~> 7.1.23'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2021-02-09 12:09:26 +01:00
|
|
|
gem 'stripe', '5.29.0'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'recurrence'
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
# PDF
|
|
|
|
gem 'prawn'
|
|
|
|
gem 'prawn-table'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2018-06-05 12:30:08 +02:00
|
|
|
gem 'elasticsearch-model', '~> 5'
|
|
|
|
gem 'elasticsearch-persistence', '~> 5'
|
2018-11-21 15:48:45 +01:00
|
|
|
gem 'elasticsearch-rails', '~> 5'
|
2020-05-13 12:15:29 +02:00
|
|
|
gem 'faraday', '~> 0.17'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
gem 'pundit'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
gem 'oj'
|
|
|
|
|
|
|
|
gem 'chroma'
|
|
|
|
|
2016-04-04 17:42:45 +02:00
|
|
|
gem 'message_format'
|
2016-04-20 18:13:36 +02:00
|
|
|
|
|
|
|
gem 'openlab_ruby'
|
2016-05-04 11:48:14 +02:00
|
|
|
|
2016-05-04 18:17:50 +02:00
|
|
|
gem 'api-pagination'
|
2016-05-05 15:02:02 +02:00
|
|
|
gem 'apipie-rails'
|
2016-07-05 16:13:11 +02:00
|
|
|
|
|
|
|
# XLS files generation
|
2019-10-21 16:11:49 +02:00
|
|
|
gem 'caxlsx'
|
2020-02-19 16:22:02 +01:00
|
|
|
gem 'caxlsx_rails'
|
2019-10-21 16:11:49 +02:00
|
|
|
gem 'rubyzip', '>= 1.3.0'
|
2018-03-08 12:00:17 +01:00
|
|
|
|
2019-02-26 15:18:19 +01:00
|
|
|
# get free disk space
|
|
|
|
gem 'sys-filesystem'
|
2019-03-21 17:15:41 +01:00
|
|
|
|
|
|
|
gem 'sha3'
|
2019-10-02 14:37:47 +02:00
|
|
|
|
|
|
|
gem 'repost'
|
2019-11-26 13:44:43 +01:00
|
|
|
|
|
|
|
gem 'icalendar'
|
2020-10-23 15:00:21 +02:00
|
|
|
|
|
|
|
gem 'tzinfo-data'
|
2020-10-29 15:53:29 +01:00
|
|
|
|
|
|
|
# compilation of dynamic stylesheets (home page & theme)
|
2023-01-16 14:57:32 +01:00
|
|
|
gem 'sassc', '= 2.3.0'
|
2022-07-29 15:28:57 +02:00
|
|
|
|
2022-08-23 11:36:57 +02:00
|
|
|
gem 'redis-session-store'
|
2022-07-11 19:17:36 +02:00
|
|
|
|
|
|
|
gem 'acts_as_list'
|
2023-01-04 16:03:52 +01:00
|
|
|
|
|
|
|
# Error reporting
|
|
|
|
gem 'sentry-rails'
|
|
|
|
gem 'sentry-ruby'
|