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

151 lines
3.1 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'
git 'https://github.com/judynjagi/compass.git', branch: 'stable' do
gem 'compass-core'
end
2020-03-24 18:53:43 +01:00
gem 'compass-rails', '3.1.0'
2015-05-05 03:10:25 +02:00
# 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
2020-03-02 16:20:20 +01:00
gem 'puma', '3.12.4'
2015-05-05 03:10:25 +02:00
# Use SCSS for stylesheets
2020-03-11 16:18:17 +01:00
gem 'sass-rails', '~> 5.0', '>= 5.0.6'
2015-05-05 03:10:25 +02:00
# Use Uglifier as compressor for JavaScript assets
2018-12-03 10:22:10 +01:00
gem 'uglifier', '>= 4.1.20'
2015-05-05 03:10:25 +02:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
2016-03-23 18:39:41 +01:00
gem 'therubyracer', '= 0.12.0', platforms: :ruby
2015-05-05 03:10:25 +02:00
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jbuilder_cache_multi'
2015-05-05 03:10:25 +02:00
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc # TODO, remove unused ?
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'
2016-12-01 13:08:41 +01:00
gem 'coveralls', 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'
gem 'minitest-reporters'
gem 'pdf-reader'
2020-03-11 16:18:17 +01:00
gem 'vcr', '3.0.1'
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'
gem 'devise', '>= 4.6.0'
2015-05-05 03:10:25 +02:00
gem 'omniauth', '~> 1.9.0'
2016-03-23 18:39:41 +01:00
gem 'omniauth-oauth2'
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'
gem 'kaminari'
2019-02-25 10:07:49 +01:00
gem 'bootstrap-sass', '>= 3.4.1'
2015-05-05 03:10:25 +02:00
gem 'font-awesome-rails'
# 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
gem 'redis-namespace'
gem 'sidekiq', '>= 3.4.2'
2015-05-05 03:10:25 +02:00
gem 'sinatra', require: false
# Recurring jobs for Sidekiq
gem 'sidekiq-cron'
gem 'stripe', '5.1.1'
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'
2015-05-05 03:10:25 +02:00
gem 'notify_with'
gem 'pundit'
2016-03-23 18:39:41 +01:00
gem 'oj'
2020-03-11 16:18:17 +01:00
gem 'actionpack-page_caching', '1.1.0'
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'
2018-11-21 15:48:45 +01:00
gem 'has_secure_token'
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'