agenda-libre-ruby/Gemfile

161 lines
4.1 KiB
Ruby
Raw Normal View History

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
# Necessary for an unknown reason in production
gem 'mini_portile2'
# The central piece of this application: the month calendar view
gem 'simple_calendar'
gem 'icalendar'
2016-06-25 16:03:08 +02:00
# The recurrence management library
# Using a forked one, that corrects https://github.com/seejohnrun/ice_cube/issues/431
gem 'ice_cube', github: 'Promptus/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
gem 'haml-rails'
2016-09-19 21:58:50 +02:00
gem 'devise'
gem 'devise-i18n'
gem 'http_accept_language'
2014-05-17 13:36:58 +02:00
gem 'rails-i18n'
# 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'
gem 'i18n-tasks'
# Remove leading and trailing white spaces
gem 'strip_attributes'
# Track changes to models' data
gem 'paper_trail'
2016-10-17 12:21:23 +02:00
gem 'piwik_analytics'
# Validate mails submitted
2014-05-26 01:06:43 +02:00
gem 'email_validator'
# 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
gem 'differ'
# A generic library to administrate the tool
2017-08-01 09:43:56 +02:00
gem 'activeadmin'
gem 'has_scope'
2018-10-17 15:47:43 +02:00
gem 'preserve'
# Markdown display
gem 'kramdown'
2013-11-24 16:09:03 +01:00
gem 'flag-icons-rails'
2014-08-23 16:59:42 +02:00
gem 'geocoder'
gem 'i18n-country-translations'
2014-08-23 16:59:42 +02:00
# Tiny MCE integration
gem 'tinymce-rails'
2017-10-21 22:12:19 +02:00
gem 'acts-as-taggable-on'
gem 'tagsinput-rails'
2017-10-21 22:12:19 +02:00
# Rails engine for static pages
gem 'high_voltage'
# SEO optimisations
gem 'meta-tags'
gem 'twitter'
2017-10-21 22:12:19 +02:00
group :development, :test do
# Use sqlite3 as the database for Active Record
2019-04-19 16:57:06 +02:00
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'
gem 'guard-bundler', require: false
gem 'guard-livereload', require: false
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'
gem 'rack-livereload'
2019-04-29 16:50:58 +02:00
gem 'rubocop-performance'
# Security checks
gem 'brakeman', require: false
gem 'guard-brakeman', require: false
gem 'guard-rails', require: false
2013-11-24 16:09:03 +01:00
end
2018-01-01 17:52:33 +01:00
group :test do
# To test objects assigned in controllers, much easier...
gem 'rails-controller-testing'
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'
# Use SASS for stylesheets
gem 'sassc-rails'
2015-10-31 17:45:44 +01:00
# Use jquery and jquery-ui as the JavaScript library
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.
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'
source 'https://rails-assets.org' do
2019-04-23 00:34:46 +02:00
gem 'rails-assets-iframe-resizer'
gem 'rails-assets-jquery-sparkline'
gem 'rails-assets-jquery-visible'
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
group :production do
# Use postgresql as the database for Active Record
# gem 'pg'
# Use mysql as the database for Active Record
gem 'mysql2'
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]