2013-11-13 23:09:38 +01:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2017-10-21 22:12:19 +02:00
|
|
|
git_source(:github) do |repo_name|
|
|
|
|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
|
|
|
|
"https://github.com/#{repo_name}.git"
|
|
|
|
end
|
|
|
|
|
2018-03-18 14:54:19 +01:00
|
|
|
# Necessary for an unknown reason in production
|
|
|
|
gem 'mini_portile2'
|
|
|
|
|
2014-08-17 20:16:40 +02:00
|
|
|
# The central piece of this application: the month calendar view
|
|
|
|
gem 'simple_calendar'
|
2016-06-25 16:03:08 +02:00
|
|
|
# The recurrence management library
|
|
|
|
gem 'ice_cube'
|
2013-11-13 23:09:38 +01:00
|
|
|
|
2018-01-01 17:52:33 +01:00
|
|
|
gem 'rails', '>= 5.1.4'
|
2013-11-13 23:09:38 +01:00
|
|
|
|
2015-11-10 23:29:05 +01:00
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
2017-10-21 22:12:19 +02:00
|
|
|
gem 'jbuilder', '~> 2.5'
|
2015-11-10 23:29:05 +01:00
|
|
|
|
2017-10-08 15:52:23 +02:00
|
|
|
gem 'haml-rails'
|
|
|
|
|
2016-09-19 21:58:50 +02:00
|
|
|
gem 'devise'
|
2013-11-14 17:07:48 +01:00
|
|
|
gem 'devise-i18n'
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'http_accept_language'
|
2014-05-17 13:36:58 +02:00
|
|
|
gem 'rails-i18n'
|
2014-07-13 14:03:59 +02:00
|
|
|
# Store some specific content, like application name and static pages contents
|
2017-07-20 23:11:12 +02:00
|
|
|
gem 'i18n-active_record', require: 'i18n/active_record'
|
2015-07-25 18:32:27 +02:00
|
|
|
# Remove leading and trailing white spaces
|
|
|
|
gem 'strip_attributes'
|
|
|
|
# Track changes to models' data
|
2016-03-13 14:30:30 +01:00
|
|
|
gem 'paper_trail'
|
2016-10-17 12:21:23 +02:00
|
|
|
gem 'piwik_analytics'
|
2014-08-17 20:16:40 +02:00
|
|
|
|
2014-07-18 13:20:11 +02:00
|
|
|
# Validate mails submitted
|
2014-05-26 01:06:43 +02:00
|
|
|
gem 'email_validator'
|
2014-08-17 20:16:40 +02:00
|
|
|
# Email address obfuscation
|
2016-12-23 22:47:34 +01:00
|
|
|
gem 'actionview-encoded_mail_to'
|
2014-06-09 12:18:40 +02:00
|
|
|
# To display a patched diff for event descriptions
|
2014-10-26 18:32:46 +01:00
|
|
|
gem 'differ'
|
2014-03-09 23:34:04 +01:00
|
|
|
|
2014-07-18 13:20:11 +02:00
|
|
|
# A generic library to administrate the tool
|
2017-08-01 09:43:56 +02:00
|
|
|
gem 'activeadmin'
|
2017-08-20 19:56:46 +02:00
|
|
|
gem 'has_scope'
|
2014-07-18 13:20:11 +02:00
|
|
|
|
2014-03-09 23:34:04 +01:00
|
|
|
# Markdown display
|
2017-06-04 12:59:14 +02:00
|
|
|
gem 'kramdown'
|
2013-11-24 16:09:03 +01:00
|
|
|
|
2017-05-27 13:28:03 +02:00
|
|
|
gem 'flag-icons-rails'
|
2014-08-23 16:59:42 +02:00
|
|
|
gem 'geocoder'
|
|
|
|
|
2014-07-12 12:21:39 +02:00
|
|
|
# Tiny MCE integration
|
|
|
|
gem 'tinymce-rails'
|
|
|
|
gem 'tinymce-rails-langs'
|
|
|
|
|
2017-10-21 22:12:19 +02:00
|
|
|
gem 'acts-as-taggable-on'
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'tagsinput-rails'
|
|
|
|
|
2017-10-21 22:12:19 +02:00
|
|
|
# Rails engine for static pages
|
|
|
|
gem 'high_voltage'
|
|
|
|
|
2014-07-18 13:20:11 +02:00
|
|
|
# SEO optimisations
|
|
|
|
gem 'meta-tags'
|
|
|
|
|
2014-10-04 15:19:52 +02:00
|
|
|
gem 'twitter'
|
|
|
|
|
2017-10-21 22:12:19 +02:00
|
|
|
group :development, :test do
|
|
|
|
# Use sqlite3 as the database for Active Record
|
|
|
|
gem 'sqlite3'
|
2016-11-01 21:52:37 +01:00
|
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger
|
|
|
|
# console
|
2017-10-21 22:12:19 +02:00
|
|
|
gem 'byebug', platforms: %i[mri mingw x64_mingw]
|
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
|
|
# Access an IRB console on exception pages or by using <%= console %>
|
|
|
|
# anywhere in the code.
|
|
|
|
gem 'web-console', '>= 3.3.0'
|
|
|
|
# Spring speeds up development by keeping your application
|
|
|
|
# running in the background. Read more:
|
|
|
|
# https://github.com/rails/spring
|
|
|
|
gem 'spring'
|
|
|
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
|
|
|
|
|
|
# Use Puma as the app server
|
|
|
|
gem 'puma', '~> 3.7'
|
2016-11-01 21:52:37 +01:00
|
|
|
|
|
|
|
# Scanning the Gemfile for insecure dependencies based on published CVEs
|
|
|
|
gem 'bundler-audit'
|
|
|
|
|
2015-10-24 17:14:47 +02:00
|
|
|
gem 'guard-bundler', require: false
|
|
|
|
gem 'guard-livereload', require: false
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'guard-migrate', require: false
|
|
|
|
gem 'guard-minitest', require: false
|
|
|
|
gem 'guard-rubocop', require: false
|
2016-04-21 00:01:17 +02:00
|
|
|
gem 'haml_lint'
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'rack-livereload'
|
2014-06-09 20:36:53 +02:00
|
|
|
# Security checks
|
|
|
|
gem 'brakeman', require: false
|
2015-10-24 17:14:47 +02:00
|
|
|
gem 'guard-brakeman', require: false
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'guard-rails', require: false
|
2013-11-24 16:09:03 +01:00
|
|
|
end
|
2014-07-18 18:20:28 +02:00
|
|
|
|
2018-01-01 17:52:33 +01:00
|
|
|
group :test do
|
|
|
|
# Adds support for Capybara system testing and selenium driver
|
|
|
|
gem 'capybara', '~> 2.13'
|
|
|
|
# To test objects assigned in controllers, much easier...
|
|
|
|
gem 'rails-controller-testing'
|
|
|
|
gem 'selenium-webdriver'
|
|
|
|
end
|
|
|
|
|
2017-09-02 21:07:27 +02:00
|
|
|
group :development, :test, :assets do
|
2015-10-31 17:45:44 +01:00
|
|
|
# Use CoffeeScript for .coffee assets and views
|
|
|
|
gem 'coffee-rails'
|
2017-10-08 15:52:23 +02:00
|
|
|
# Use SASS for stylesheets
|
|
|
|
gem 'sass-rails'
|
2015-10-31 17:45:44 +01:00
|
|
|
|
|
|
|
# Use jquery as the JavaScript library
|
2017-07-28 00:35:14 +02:00
|
|
|
gem 'jquery-ui-rails'
|
2015-10-31 17:45:44 +01:00
|
|
|
# Turbolinks makes following links in your web application
|
|
|
|
# faster. Read more: https://github.com/rails/turbolinks
|
|
|
|
gem 'turbolinks'
|
|
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
2016-03-13 14:30:30 +01:00
|
|
|
gem 'sdoc', group: :doc
|
2015-10-31 17:45:44 +01:00
|
|
|
|
|
|
|
gem 'modernizr-rails'
|
|
|
|
|
|
|
|
# A superb font to use as icons
|
|
|
|
gem 'font-awesome-sass'
|
2017-01-02 10:42:08 +01:00
|
|
|
|
|
|
|
# Carte openstreetmap
|
2017-07-06 11:39:26 +02:00
|
|
|
source 'https://rails-assets.org' do
|
|
|
|
gem 'rails-assets-jquery-sparkline'
|
|
|
|
gem 'rails-assets-leaflet'
|
|
|
|
gem 'rails-assets-leaflet.markercluster'
|
|
|
|
end
|
2015-10-31 17:45:44 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
group :assets do
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
|
|
gem 'uglifier'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
|
|
gem 'therubyracer', platforms: :ruby
|
|
|
|
end
|
|
|
|
|
2014-07-18 18:20:28 +02:00
|
|
|
group :production do
|
2017-03-31 17:25:25 +02:00
|
|
|
# Use postgresql as the database for Active Record
|
|
|
|
# gem 'pg'
|
2014-07-18 18:20:28 +02:00
|
|
|
# Use mysql as the database for Active Record
|
2016-03-13 14:30:30 +01:00
|
|
|
gem 'mysql2'
|
2014-07-18 18:20:28 +02:00
|
|
|
end
|
2017-10-21 22:12:19 +02:00
|
|
|
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
|
|
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
|