agenda-libre-ruby/Gemfile

145 lines
3.4 KiB
Ruby
Raw Normal View History

2013-11-13 23:09:38 +01:00
source 'https://rubygems.org'
# 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'
# Rails engine for static pages
gem 'high_voltage'
gem 'rails'
# 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'
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'
# 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'
# 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'
# 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'
gem 'tagsinput-rails'
# SEO optimisations
gem 'meta-tags'
gem 'twitter'
2013-11-24 16:09:03 +01:00
group :development do
gem 'quiet_assets'
gem 'webrick'
2016-02-13 17:24:23 +01:00
# Access an IRB console on exception pages or by using <%= console %> in views
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'
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'
# 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
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
gem 'sqlite3'
2015-02-28 18:21:06 +01:00
end
2015-10-31 17:45:44 +01:00
group :development, :test, :assets do
# 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
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'
# Carte openstreetmap
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
group :production do
# Use postgresql as the database for Active Record
# gem 'pg'
# Use mysql as the database for Active Record
gem 'mysql2'
end