demarches-normaliennes/Gemfile

151 lines
2.9 KiB
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
source 'https://rubygems.org'
2016-11-14 17:33:45 +01:00
gem 'rails', '5.0.0.1'
2015-08-11 15:36:48 +02:00
2016-12-22 21:49:31 +01:00
gem 'actioncable', '5.0.0.1'
gem 'redis'
2015-08-10 11:05:06 +02:00
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
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
2017-03-30 17:00:35 +02:00
gem 'turbolinks', '~> 5.0'
2015-08-10 11:05:06 +02:00
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
2016-06-15 11:34:05 +02:00
# Enable deep clone of active record models
gem 'deep_cloneable', '~> 2.2.1'
2016-03-24 16:44:25 +01:00
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
gem 'will_paginate-bootstrap'
2015-11-26 12:29:34 +01:00
2015-08-10 11:05:06 +02:00
# Decorators
2016-11-14 17:33:45 +01:00
gem 'draper', '~> 3.0.0.pre1'
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
2016-11-14 17:33:45 +01:00
gem 'devise'
gem 'openid_connect'
2016-02-29 15:15:44 +01:00
gem 'rest-client'
2015-08-10 11:05:06 +02:00
2016-04-14 16:50:13 +02:00
gem 'clamav-client', require: 'clamav/client'
gem 'carrierwave'
gem 'fog'
gem 'fog-openstack'
2015-08-10 11:05:06 +02:00
gem 'pg'
2015-08-10 11:05:06 +02:00
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 'bootstrap-datepicker-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
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
2016-02-19 16:59:18 +01:00
gem 'as_csv'
gem 'spreadsheet_architect'
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-03-06 10:02:50 +01:00
gem 'newrelic_rpm'
# Sidekiq
gem 'sidekiq'
gem 'sidekiq-cron', '~> 0.4.4'
2017-03-15 15:09:43 +01:00
gem 'sinatra', git: 'https://github.com/sinatra/sinatra.git', require: false
2017-03-15 17:49:48 +01:00
gem 'select2-rails'
2015-08-10 11:05:06 +02:00
group :test do
gem 'capybara'
gem 'launchy'
gem 'factory_girl'
gem 'database_cleaner'
gem 'webmock'
gem 'shoulda-matchers', require: false
gem 'poltergeist'
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'
gem 'sqlite3'
2015-08-10 11:05:06 +02:00
end
2016-11-14 17:33:45 +01:00
group :development do
# 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'
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'
gem 'rspec-rails', '~> 3.0'
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'
2015-08-10 11:05:06 +02:00
end
2015-09-01 14:58:48 +02:00
group :production, :staging do
gem 'sentry-raven'
2015-09-01 14:58:48 +02:00
end
2017-03-15 15:09:43 +01:00
group :production, :staging, :development do
gem 'scenic'
end