Newer
Older
# The central piece of this application: the month calendar view
gem 'simple_calendar'
# The recurrence management library
gem 'ice_cube'
# Rails engine for static pages
gem 'high_voltage'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
echarp
a validé
gem 'http_accept_language'
# Store some specific content, like application name and static pages contents
# Remove leading and trailing white spaces
gem 'strip_attributes'
# Track changes to models' data
gem 'paper_trail'
# A generic library to administrate the tool
# Markdown display
gem 'kramdown'
gem 'flag-icons-rails'
# Tiny MCE integration
gem 'tinymce-rails'
gem 'tinymce-rails-langs'
# The newer 5th version requires a newer ruby > 2.1
gem 'acts-as-taggable-on', '< 5'
echarp
a validé
gem 'tagsinput-rails'
# SEO optimisations
gem 'meta-tags'
echarp
a validé
gem 'quiet_assets'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# 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
echarp
a validé
gem 'guard-migrate', require: false
gem 'guard-minitest', require: false
gem 'guard-rubocop', require: false
echarp
a validé
gem 'rack-livereload'
# Security checks
gem 'brakeman', require: false
gem 'guard-brakeman', require: false
echarp
a validé
gem 'guard-rails', require: false
echarp
a validé
# Use SASS for stylesheets
gem 'sass-rails'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
# Use jquery as the JavaScript library
# 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
gem 'modernizr-rails'
# A superb font to use as icons
gem 'font-awesome-sass'
source 'https://rails-assets.org' do
gem 'rails-assets-jquery-sparkline'
gem 'rails-assets-leaflet'
gem 'rails-assets-leaflet.markercluster'
end
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
echarp
a validé
group :production do
# Use postgresql as the database for Active Record
# gem 'pg'
echarp
a validé
# Use mysql as the database for Active Record