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
|
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-07-28 00:35:14 +02:00
|
|
|
gem 'activeadmin', '= 1.0.0'
|
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-05-27 17:53:42 +02:00
|
|
|
# The newer 5th version requires a newer ruby > 2.1
|
|
|
|
gem 'acts-as-taggable-on', '< 5'
|
2016-12-17 16:59:11 +01:00
|
|
|
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-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
|
2017-03-31 17:25:25 +02:00
|
|
|
gem 'sqlite3'
|
2015-02-28 18:21:06 +01:00
|
|
|
end
|
|
|
|
|
2015-10-31 17:45:44 +01:00
|
|
|
group :development, :test, :assets do
|
2017-07-06 11:39:26 +02:00
|
|
|
# Use SASS for stylesheets
|
|
|
|
gem 'sass-rails'
|
|
|
|
|
2015-10-31 17:45:44 +01:00
|
|
|
# Use CoffeeScript for .coffee assets and views
|
|
|
|
gem 'coffee-rails'
|
|
|
|
|
|
|
|
# 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
|