demarches-normaliennes/Gemfile

156 lines
3.2 KiB
Text
Raw Normal View History

2015-08-10 11:05:06 +02:00
source 'https://rubygems.org'
gem 'dotenv-rails', require: 'dotenv/rails-now' # dotenv should always be loaded before rails
2018-05-24 16:43:16 +02:00
gem 'rails'
2015-08-11 15:36:48 +02:00
gem 'sassc-rails' # Use SCSS for stylesheets
2016-11-14 17:33:45 +01:00
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'turbolinks' # Turbolinks makes following links in your web application faster
2015-08-10 11:05:06 +02:00
gem 'deep_cloneable' # Enable deep clone of active record models
2016-03-24 16:44:25 +01:00
gem 'warden'
gem 'puma' # Use Puma as the app server
2015-08-10 11:05:06 +02:00
gem 'active_model_serializers'
2015-12-21 17:50:16 +01:00
gem 'haml-rails'
2015-08-10 11:05:06 +02:00
gem 'bootstrap-sass', '~> 3.3.5'
gem 'active_link_to' # Automatically set a class on active links
gem 'kaminari' # Pagination
2015-11-26 12:29:34 +01:00
gem 'devise' # Gestion des comptes utilisateurs
2018-05-26 00:06:40 +02:00
gem 'devise-async'
gem 'openid_connect'
gem 'omniauth-github'
2016-02-29 15:15:44 +01:00
gem 'rails-i18n' # Locales par défaut
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-openstack'
gem 'activestorage-openstack', git: 'https://github.com/fredZen/activestorage-openstack.git', branch: 'frederic/fix_upload_signature'
2015-08-10 11:05:06 +02:00
gem 'pg'
2015-08-10 11:05:06 +02:00
gem 'bcrypt'
2018-04-03 16:26:24 +02:00
gem 'rgeo-geojson'
2015-08-10 11:05:06 +02:00
gem 'chartkick'
2015-08-10 11:05:06 +02:00
2018-08-12 10:31:28 +02:00
gem 'lograge'
gem 'logstash-event'
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
gem 'premailer-rails'
2018-06-10 11:39:48 +02:00
2018-03-12 10:34:27 +01:00
gem 'smart_listing'
2016-01-07 11:41:03 +01:00
2018-08-24 17:30:35 +02:00
gem 'groupdate'
gem 'bootstrap-wysihtml5-rails', '~> 0.3.3.8'
2016-02-12 13:49:32 +01:00
gem 'spreadsheet_architect'
gem 'axlsx', '~> 3.0.0.pre' # https://github.com/randym/axlsx/issues/501#issuecomment-373640365
2016-02-19 16:59:18 +01:00
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'
gem 'webpacker', '>= 4.0.x'
2018-07-18 15:45:23 +02:00
gem 'after_party'
2018-09-26 00:26:01 +02:00
gem 'zxcvbn-ruby', require: 'zxcvbn'
2017-09-26 10:43:50 +02:00
gem 'delayed_job_active_record'
gem 'daemons'
gem 'delayed_cron_job' # Cron jobs
gem 'delayed_job_web'
2017-03-15 17:49:48 +01:00
gem 'select2-rails'
gem 'prawn' # PDF Generation
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'
gem 'administrate'
2017-12-28 10:40:01 +01:00
2017-07-21 13:42:40 +02:00
gem 'rack-mini-profiler'
gem 'rake-progressbar', require: false
2015-08-10 11:05:06 +02:00
group :test do
gem 'launchy'
2018-01-23 17:15:42 +01:00
gem 'factory_bot'
gem 'database_cleaner'
gem 'webmock'
gem 'shoulda-matchers', require: false
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
gem 'guard-livereload', require: false
gem 'vcr'
gem 'rails-controller-testing'
gem 'capybara' # Integration testing
gem 'capybara-selenium'
gem 'capybara-screenshot' # Save a dump of the page when an integration test fails
gem 'capybara-email' # Access emails during integration tests
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
gem 'web-console' # Access an IRB console on exception pages or by using <%= console %> in views
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
2018-09-25 11:54:15 +02:00
gem 'letter_opener_web'
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
gem 'pry-byebug'
2015-08-10 11:05:06 +02:00
gem 'spring' # Spring speeds up development by keeping your application running in the background
2017-03-04 09:28:31 +01:00
gem 'spring-commands-rspec'
2018-01-20 20:39:53 +01:00
gem 'rspec-rails'
2015-08-17 11:12:59 +02:00
gem 'mina', git: 'https://github.com/mina-deploy/mina.git', require: false # Deploy
2017-12-15 12:16:02 +01:00
gem 'rspec_junit_formatter'
2015-08-10 11:05:06 +02:00
end