demarches-normaliennes/Gemfile

114 lines
2.5 KiB
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
2015-08-11 15:36:48 +02:00
2015-08-10 11:05:06 +02:00
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
2015-12-10 11:57:32 +01:00
gem 'therubyracer', platforms: :ruby
2015-08-10 11:05:06 +02:00
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
2015-09-01 14:25:15 +02:00
gem 'unicorn'
2015-08-10 11:05:06 +02:00
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
#haml
gem 'haml-rails'
#bootstrap saas
gem 'bootstrap-sass', '~> 3.3.5'
2015-11-26 12:29:34 +01:00
# Pagination
gem 'will_paginate-bootstrap'
2015-08-10 11:05:06 +02:00
# Decorators
gem 'draper'
#Gestion des comptes utilisateurs
gem 'devise'
2015-10-05 16:42:29 +02:00
gem 'openid_connect'
2015-08-10 11:05:06 +02:00
gem 'rest-client'
gem 'carrierwave'
gem 'pg'
gem 'rgeo-geojson'
gem 'leaflet-rails'
gem 'leaflet-markercluster-rails', '~> 0.7.0'
gem 'leaflet-draw-rails'
gem 'bootstrap-datepicker-rails'
gem 'chartkick'
2015-09-01 14:25:15 +02:00
gem 'logstasher'
2015-09-23 10:02:01 +02:00
gem "font-awesome-rails"
2015-10-05 16:42:29 +02:00
gem 'hashie'
2015-12-14 16:09:20 +01:00
gem 'mailjet'
2015-08-10 11:05:06 +02:00
group :test do
gem 'capybara'
gem 'factory_girl'
gem 'database_cleaner'
gem 'selenium-webdriver'
gem 'webmock'
gem 'shoulda-matchers', require: false
gem 'simplecov', require: false
gem 'poltergeist'
gem 'timecop'
2015-11-19 11:37:29 +01:00
gem 'guard'
gem 'guard-rspec', require: false
2015-11-20 13:54:23 +01:00
gem 'guard-livereload', '~> 2.4', require: false
2015-08-10 11:05:06 +02:00
end
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
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec'
2015-08-10 11:05:06 +02:00
gem 'rspec-rails', '~> 3.0'
2015-08-17 11:12:59 +02:00
gem 'railroady'
2015-08-20 16:11:31 +02:00
gem 'rubocop', require: false
gem 'rubocop-checkstyle_formatter', require: false
gem 'rubocop-rspec', require: false
2015-09-01 14:35:27 +02:00
# Deploy
gem 'mina', git: 'https://github.com/mina-deploy/mina.git'
2015-08-10 11:05:06 +02:00
end
2015-09-01 14:58:48 +02:00
group :production, :staging do
gem 'sentry-raven'
end