1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/Gemfile

148 lines
2.8 KiB
Ruby
Raw Normal View History

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'
2022-07-27 09:31:41 +02:00
gem 'rails', '~> 5.2.8'
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
gem 'puma', '4.3.12'
gem 'shakapacker', '6.2.0'
2015-05-05 03:10:25 +02:00
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jbuilder_cache_multi'
gem 'json', '>= 2.3.0'
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'
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'
gem 'minitest-reporters'
gem 'pdf-reader'
gem 'rubyXL'
gem 'vcr', '6.0.0'
2018-11-21 15:48:45 +01:00
gem 'webmock'
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
gem 'devise', '>= 4.6.0'
2022-01-17 14:09:41 +01:00
gem 'omniauth', '~> 1.9.0'
2016-03-23 18:39:41 +01:00
gem 'omniauth-oauth2'
gem 'omniauth_openid_connect'
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-scheduler'
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'
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'
gem 'actionpack-page_caching', '1.2.2'
2016-03-23 18:39:41 +01:00
gem 'rails-observers'
gem 'chroma'
gem 'message_format'
2016-04-20 18:13:36 +02:00
gem 'openlab_ruby'
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
gem 'caxlsx'
2020-02-19 16:22:02 +01:00
gem 'caxlsx_rails'
gem 'rubyzip', '>= 1.3.0'
2018-03-08 12:00:17 +01:00
# get free disk space
gem 'sys-filesystem'
gem 'sha3'
gem 'repost'
gem 'icalendar'
gem 'tzinfo-data'
# compilation of dynamic stylesheets (home page & theme)
2021-09-30 14:54:26 +02:00
gem 'sassc', '= 2.1.0'
gem 'redis-session-store'