demarches-normaliennes/Gemfile

170 lines
3.4 KiB
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
source 'https://rubygems.org'
2018-04-23 11:25:28 +02:00
gem 'rails', '~> 5.2.0'
2015-08-11 15:36:48 +02:00
2015-08-10 11:05:06 +02:00
# Use SCSS for stylesheets
2018-01-20 20:36:29 +01:00
gem 'sass-rails'
2015-08-10 11:05:06 +02:00
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
2016-11-14 17:33:45 +01:00
2015-08-10 11:05:06 +02:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
2015-08-10 11:05:06 +02:00
# Use jquery as the JavaScript library
gem 'jquery-rails'
2015-08-10 11:05:06 +02:00
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
2018-01-20 20:38:08 +01:00
gem 'turbolinks'
2015-08-10 11:05:06 +02:00
2016-06-15 11:34:05 +02:00
# Enable deep clone of active record models
2018-01-20 20:11:33 +01:00
gem 'deep_cloneable'
2016-03-24 16:44:25 +01:00
gem 'warden', git: 'https://github.com/hassox/warden.git', branch: 'master'
2015-08-10 11:05:06 +02:00
# Use Unicorn as the app server
gem 'unicorn'
2015-08-10 11:05:06 +02:00
2015-12-21 17:50:16 +01:00
# serializer
gem 'active_model_serializers'
2015-12-21 17:50:16 +01:00
# haml
gem 'haml-rails'
2015-08-10 11:05:06 +02:00
# bootstrap saas
2015-08-10 11:05:06 +02:00
gem 'bootstrap-sass', '~> 3.3.5'
2015-11-26 12:29:34 +01:00
# Pagination
2017-09-21 16:47:06 +02:00
gem 'kaminari'
2015-11-26 12:29:34 +01:00
2015-08-10 11:05:06 +02:00
# Decorators
2018-01-20 20:13:53 +01:00
gem 'draper'
2017-03-21 16:45:42 +01:00
2016-11-28 18:34:31 +01:00
gem 'unicode_utils'
2015-08-10 11:05:06 +02:00
# Gestion des comptes utilisateurs
gem 'devise'
gem 'openid_connect'
gem 'omniauth-github'
2016-02-29 15:15:44 +01:00
gem 'rest-client'
gem 'typhoeus'
2015-08-10 11:05:06 +02:00
2016-04-14 16:50:13 +02:00
gem 'clamav-client', require: 'clamav/client'
gem 'carrierwave'
2017-10-31 15:16:55 +01:00
gem 'carrierwave-i18n'
gem 'copy_carrierwave_file'
gem 'fog'
gem 'fog-openstack'
2015-08-10 11:05:06 +02:00
gem 'pg'
2015-08-10 11:05:06 +02:00
2018-04-03 16:26:24 +02:00
gem 'rbnacl-libsodium'
gem 'rgeo-geojson'
gem 'leaflet-rails'
2015-08-10 11:05:06 +02:00
gem 'leaflet-markercluster-rails', '~> 0.7.0'
gem 'leaflet-draw-rails'
2015-08-10 11:05:06 +02:00
gem 'chartkick'
2015-08-10 11:05:06 +02:00
gem 'logstasher'
2015-09-01 14:25:15 +02:00
gem 'font-awesome-rails'
2015-09-23 10:02:01 +02:00
gem 'hashie'
2015-10-05 16:42:29 +02:00
gem 'mailjet'
2015-12-14 16:09:20 +01:00
2018-03-12 10:34:27 +01:00
gem 'smart_listing'
2016-01-07 11:41:03 +01:00
gem 'bootstrap-wysihtml5-rails', '~> 0.3.3.8'
2016-02-12 13:49:32 +01:00
gem 'spreadsheet_architect', '~> 1.4.8' # https://github.com/westonganger/spreadsheet_architect/issues/14
2016-02-19 16:59:18 +01:00
2016-12-15 11:15:53 +01:00
gem 'apipie-rails'
# For Markdown support in apipie
gem 'maruku'
2016-07-01 14:45:24 +02:00
gem 'openstack'
2016-09-22 11:31:24 +02:00
gem 'browser'
gem 'simple_form'
2017-11-16 14:13:13 +01:00
gem 'skylight'
2017-03-06 10:02:50 +01:00
2017-04-04 11:42:00 +02:00
gem 'scenic'
2018-01-11 18:09:01 +01:00
gem 'sanitize-url'
gem 'flipflop'
2018-04-18 12:14:34 +02:00
2018-05-15 17:32:12 +02:00
gem 'aasm'
2017-09-26 10:43:50 +02:00
# Cron jobs
gem 'delayed_job_active_record'
2017-09-26 12:06:32 +02:00
gem "daemons"
2017-09-26 11:32:34 +02:00
gem 'delayed_cron_job'
# FIXME: this is a fork, go back to official version
# once https://github.com/ejschmitt/delayed_job_web/issues/101
# has been merged and released
gem "delayed_job_web", git: 'https://github.com/breckenedge/delayed_job_web.git', branch: 'cve_2017_12097'
2017-03-15 17:49:48 +01:00
gem 'select2-rails'
2017-05-24 15:13:45 +02:00
# PDF Generation
2018-01-20 20:15:21 +01:00
gem 'prawn'
2018-01-20 20:17:09 +01:00
gem 'prawn_rails'
2017-05-24 15:13:45 +02:00
gem 'chunky_png'
gem 'sentry-raven'
2017-12-28 10:40:01 +01:00
gem "administrate"
2017-07-21 13:42:40 +02:00
gem 'rack-mini-profiler'
2015-08-10 11:05:06 +02:00
group :test do
gem 'capybara'
gem 'launchy'
2018-01-23 17:15:42 +01:00
gem 'factory_bot'
gem 'database_cleaner'
gem 'webmock'
gem 'shoulda-matchers', require: false
gem 'capybara-selenium'
gem 'timecop'
2016-11-23 15:21:42 +01:00
gem 'guard'
2017-03-04 09:28:31 +01:00
gem 'guard-rspec', require: false
2016-11-23 15:21:42 +01:00
gem 'guard-livereload', '~> 2.4', require: false
gem 'vcr'
gem 'rails-controller-testing'
2015-08-10 11:05:06 +02:00
end
2016-11-14 17:33:45 +01:00
group :development do
2017-07-20 15:44:26 +02:00
gem 'brakeman', require: false
# Access an IRB console on exception pages or by using <%= console %> in views
2016-12-15 11:13:23 +01:00
gem 'web-console'
2016-12-22 21:49:31 +01:00
gem 'rack-handlers'
2017-01-18 13:59:14 +01:00
gem 'xray-rails'
2017-06-13 11:04:22 +02:00
gem 'rubocop', require: false
2017-12-22 16:50:20 +01:00
gem 'rubocop-rspec-focused', require: false
2017-04-06 18:22:26 +02:00
gem 'haml-lint'
2017-04-11 16:31:05 +02:00
gem 'scss_lint', require: false
2016-11-14 17:33:45 +01:00
end
2015-08-10 11:05:06 +02:00
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'pry-byebug'
2015-08-10 11:05:06 +02:00
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
2017-03-04 09:28:31 +01:00
gem 'spring'
gem 'spring-commands-rspec'
2018-01-20 20:39:53 +01:00
gem 'rspec-rails'
2015-08-17 11:12:59 +02:00
2015-09-01 14:35:27 +02:00
# Deploy
2016-11-15 11:45:21 +01:00
gem 'mina', ref: '343a7', git: 'https://github.com/mina-deploy/mina.git'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'dotenv-rails'
2017-12-15 12:16:02 +01:00
gem 'rspec_junit_formatter'
2015-08-10 11:05:06 +02:00
end