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'
|
2020-03-30 16:46:37 +02:00
|
|
|
gem 'rails', '~> 5.2.4'
|
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
|
2021-10-12 20:12:38 +02:00
|
|
|
gem 'puma', '4.3.9'
|
2020-09-07 15:52:05 +02:00
|
|
|
gem 'webpacker', '~> 5.x'
|
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'
|
|
|
|
gem 'responders', '~> 2.0'
|
|
|
|
|
|
|
|
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'
|
2020-03-11 16:18:17 +01:00
|
|
|
gem 'web-console', '>= 3.3.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'
|
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'
|
|
|
|
gem 'rubocop', '~> 0.61.1', require: false
|
|
|
|
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'
|
2021-06-11 14:29:30 +02:00
|
|
|
gem 'vcr', '6.0.0'
|
2018-11-21 15:48:45 +01:00
|
|
|
gem 'webmock'
|
2020-07-22 11:16:43 +02:00
|
|
|
gem 'rubyXL'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
2019-12-24 10:49:51 +01:00
|
|
|
group :production, :staging do
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'rails_12factor'
|
|
|
|
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
|
2019-10-02 16:06:27 +02:00
|
|
|
gem 'devise', '>= 4.6.0'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2021-11-16 08:30:51 +01:00
|
|
|
|
|
|
|
git 'https://github.com/sleede/omniauth.git', branch: 'v1.9' do
|
|
|
|
gem 'omniauth', '~> 1.9.0'
|
|
|
|
end
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'omniauth-oauth2'
|
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
|
|
|
|
gem 'sidekiq-cron'
|
2020-06-09 18:51:57 +02:00
|
|
|
gem 'sidekiq-unique-jobs', '~> 6.0.22'
|
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 'notify_with'
|
|
|
|
|
|
|
|
gem 'pundit'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
gem 'oj'
|
|
|
|
|
2020-05-18 15:31:17 +02:00
|
|
|
gem 'actionpack-page_caching', '1.2.2'
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'rails-observers'
|
|
|
|
|
|
|
|
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)
|
|
|
|
gem 'sassc'
|