demarches-normaliennes/Gemfile

109 lines
3.1 KiB
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
source 'https://rubygems.org'
2018-11-16 12:18:37 +01:00
gem 'aasm'
gem 'active_link_to' # Automatically set a class on active links
gem 'active_model_serializers'
2018-11-16 12:18:37 +01:00
gem 'activestorage-openstack', git: 'https://github.com/fredZen/activestorage-openstack.git', branch: 'frederic/fix_upload_signature'
gem 'administrate'
gem 'after_party'
gem 'axlsx', '~> 3.0.0.pre' # https://github.com/randym/axlsx/issues/501#issuecomment-373640365
gem 'bcrypt'
2019-02-25 12:01:47 +01:00
gem 'bootstrap-sass', '>= 3.4.1'
2018-11-16 12:18:37 +01:00
gem 'bootstrap-wysihtml5-rails', '~> 0.3.3.8'
gem 'browser'
gem 'carrierwave'
2017-10-31 15:16:55 +01:00
gem 'carrierwave-i18n'
2018-11-16 12:18:37 +01:00
gem 'chartkick'
gem 'chunky_png'
gem 'clamav-client', require: 'clamav/client'
gem 'copy_carrierwave_file'
2018-11-16 12:18:37 +01:00
gem 'daemons'
gem 'deep_cloneable' # Enable deep clone of active record models
gem 'delayed_cron_job' # Cron jobs
gem 'delayed_job_active_record'
gem 'delayed_job_web'
gem 'devise' # Gestion des comptes utilisateurs
gem 'devise-async'
gem 'dotenv-rails', require: 'dotenv/rails-now' # dotenv should always be loaded before rails
gem 'flipflop'
gem 'fog-openstack'
gem 'font-awesome-rails'
gem 'gon'
2018-11-16 12:18:37 +01:00
gem 'groupdate'
gem 'haml-rails'
gem 'hashie'
2018-11-16 12:18:37 +01:00
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'kaminari' # Pagination
gem 'lograge'
gem 'logstash-event'
gem 'mailjet'
2018-11-16 12:18:37 +01:00
gem 'omniauth-github'
gem 'openid_connect'
2016-07-01 14:45:24 +02:00
gem 'openstack'
2018-11-16 12:18:37 +01:00
gem 'pg'
gem 'prawn' # PDF Generation
2018-01-20 20:17:09 +01:00
gem 'prawn_rails'
2018-11-16 12:18:37 +01:00
gem 'premailer-rails'
gem 'puma' # Use Puma as the app server
2017-07-21 13:42:40 +02:00
gem 'rack-mini-profiler'
2018-11-16 12:18:37 +01:00
gem 'rails'
gem 'rails-i18n' # Locales par défaut
gem 'rake-progressbar', require: false
gem 'react-rails'
2018-11-16 12:18:37 +01:00
gem 'rest-client'
gem 'rgeo-geojson'
gem 'sanitize-url'
gem 'sassc-rails' # Use SCSS for stylesheets
gem 'scenic'
gem 'select2-rails'
gem 'sentry-raven'
gem 'simple_form'
gem 'skylight'
gem 'smart_listing'
gem 'spreadsheet_architect'
gem 'turbolinks' # Turbolinks makes following links in your web application faster
gem 'typhoeus'
gem 'warden'
gem 'webpacker'
2018-11-16 12:18:37 +01:00
gem 'zxcvbn-ruby', require: 'zxcvbn'
2015-08-10 11:05:06 +02:00
group :test do
2018-11-16 12:18:37 +01:00
gem 'capybara' # Integration testing
gem 'capybara-email' # Access emails during integration tests
gem 'capybara-screenshot' # Save a dump of the page when an integration test fails
gem 'capybara-selenium'
gem 'database_cleaner'
2018-11-16 12:18:37 +01:00
gem 'factory_bot'
2016-11-23 15:21:42 +01:00
gem 'guard'
gem 'guard-livereload', require: false
2018-11-16 12:18:37 +01:00
gem 'guard-rspec', require: false
gem 'launchy'
gem 'rails-controller-testing'
2018-11-16 12:18:37 +01:00
gem 'shoulda-matchers', require: false
gem 'timecop'
gem 'vcr'
gem 'webmock'
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
2018-11-16 12:18:37 +01:00
gem 'haml-lint'
gem 'letter_opener_web'
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-11 16:31:05 +02:00
gem 'scss_lint', require: false
2019-03-12 17:36:16 +01:00
gem 'web-console'
2018-11-16 12:18:37 +01:00
gem 'xray-rails'
2016-11-14 17:33:45 +01:00
end
2015-08-10 11:05:06 +02:00
group :development, :test do
gem 'byebug' # Call 'byebug' anywhere in the code to stop execution and get a debugger console
2018-11-16 12:18:37 +01:00
gem 'mina', git: 'https://github.com/mina-deploy/mina.git', require: false # Deploy
gem 'pry-byebug'
2018-01-20 20:39:53 +01:00
gem 'rspec-rails'
gem 'rspec_junit_formatter', require: false
2019-02-13 19:30:58 +01:00
gem 'ruby-debug-ide', require: false
2018-11-16 12:18:37 +01:00
gem 'spring' # Spring speeds up development by keeping your application running in the background
gem 'spring-commands-rspec'
2015-08-10 11:05:06 +02:00
end