2013-11-13 23:09:38 +01:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
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'
|
2016-10-31 23:44:44 +01:00
|
|
|
# Rails engine for static pages
|
|
|
|
gem 'high_voltage'
|
2014-08-17 20:16:40 +02:00
|
|
|
|
2016-09-17 22:45:32 +02:00
|
|
|
gem 'rails'
|
2016-09-17 22:53:02 +02:00
|
|
|
# Later versions require a new ruby version, which is not yet in production
|
|
|
|
gem 'has_scope', '< 0.7'
|
2013-11-13 23:09:38 +01:00
|
|
|
|
|
|
|
# Use ActiveModel has_secure_password
|
2014-11-30 20:52:38 +01:00
|
|
|
# gem 'bcrypt', '~> 3.1.7'
|
2013-11-13 23:09:38 +01:00
|
|
|
|
2014-11-30 20:52:38 +01:00
|
|
|
# Use Unicorn as the app server
|
2013-11-13 23:09:38 +01:00
|
|
|
# gem 'unicorn'
|
|
|
|
|
|
|
|
# Use Capistrano for deployment
|
2014-03-18 15:40:13 +01:00
|
|
|
# gem 'capistrano-rails', group: :development
|
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
|
|
|
|
gem 'jbuilder'
|
|
|
|
|
2013-11-25 00:35:40 +01:00
|
|
|
gem 'haml-rails'
|
2014-08-16 11:19:27 +02:00
|
|
|
|
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
|
2014-04-04 00:51:42 +02:00
|
|
|
gem 'i18n-active_record',
|
2014-10-19 16:20:44 +02:00
|
|
|
github: 'svenfuchs/i18n-active_record',
|
2014-08-15 19:28:51 +02:00
|
|
|
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
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'activeadmin', github: 'activeadmin'
|
2014-07-18 13:20:11 +02:00
|
|
|
|
2014-03-09 23:34:04 +01:00
|
|
|
# Markdown display
|
2014-01-01 21:26:35 +01:00
|
|
|
gem 'redcarpet'
|
2013-11-24 16:09:03 +01:00
|
|
|
|
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'
|
|
|
|
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'acts-as-taggable-on'
|
|
|
|
gem 'tagsinput-rails'
|
|
|
|
|
2014-07-18 13:20:11 +02:00
|
|
|
# SEO optimisations
|
|
|
|
gem 'meta-tags'
|
|
|
|
|
2014-10-04 15:19:52 +02:00
|
|
|
gem 'twitter'
|
|
|
|
|
2013-11-24 16:09:03 +01:00
|
|
|
group :development do
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'quiet_assets'
|
2015-02-28 17:57:21 +01:00
|
|
|
gem 'sqlite3'
|
2015-10-24 17:14:47 +02:00
|
|
|
gem 'webrick'
|
2016-02-13 17:24:23 +01:00
|
|
|
|
|
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
2016-03-13 14:30:30 +01:00
|
|
|
gem 'web-console'
|
2016-02-13 17:24:23 +01:00
|
|
|
|
2016-11-01 21:52:37 +01:00
|
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger
|
|
|
|
# console
|
|
|
|
gem 'byebug'
|
|
|
|
|
|
|
|
# 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
|
|
|
|
2014-09-02 01:02:51 +02:00
|
|
|
group :test do
|
|
|
|
gem 'simplecov'
|
|
|
|
end
|
|
|
|
|
2015-02-28 18:21:06 +01:00
|
|
|
group :development, :test do
|
|
|
|
# Spring speeds up development by keeping your application running in the
|
|
|
|
# background. Read more: https://github.com/rails/spring
|
|
|
|
gem 'spring'
|
|
|
|
end
|
|
|
|
|
2015-10-31 17:45:44 +01:00
|
|
|
group :development, :test, :assets do
|
2016-03-13 14:30:30 +01:00
|
|
|
# Use SASS for stylesheets
|
2015-10-31 17:45:44 +01:00
|
|
|
gem 'sass-rails'
|
|
|
|
# Use CoffeeScript for .coffee assets and views
|
|
|
|
gem 'coffee-rails'
|
|
|
|
|
|
|
|
# Use jquery as the JavaScript library
|
2016-12-17 16:59:11 +01:00
|
|
|
gem 'jquery-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'
|
|
|
|
|
2017-01-02 10:42:08 +01:00
|
|
|
gem 'jquery-sparkline-rails', github: 'cubus/jquery-sparkline-rails'
|
|
|
|
|
2015-10-31 17:45:44 +01:00
|
|
|
# A superb font to use as icons
|
|
|
|
gem 'font-awesome-sass'
|
2017-01-02 10:42:08 +01:00
|
|
|
|
|
|
|
# Carte openstreetmap
|
|
|
|
gem 'leaflet-rails'
|
2017-01-02 10:47:45 +01:00
|
|
|
gem 'rails-assets-leaflet.markercluster', source: 'https://rails-assets.org'
|
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
|
|
|
|
# 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
|