Skip to content
Extraits de code Groupes Projets
Gemfile 3,97 ko
Newer Older
echarp's avatar
echarp a validé
echarp's avatar
echarp a validé
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'
echarp's avatar
echarp a validé
# The recurrence management library
gem 'ice_cube'
echarp's avatar
echarp a validé

echarp's avatar
echarp a validé
gem 'rails', '>= 5.1.4'
echarp's avatar
echarp a validé

echarp's avatar
echarp a validé
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
echarp's avatar
echarp a validé
gem 'jbuilder', '~> 2.5'
echarp's avatar
echarp a validé
gem 'devise'
echarp's avatar
echarp a validé
gem 'rails-i18n'
# Store some specific content, like application name and static pages contents
echarp's avatar
echarp a validé
gem 'i18n-active_record', require: 'i18n/active_record'
# Remove leading and trailing white spaces
gem 'strip_attributes'
# Track changes to models' data
# Validate mails submitted
# Email address obfuscation
echarp's avatar
echarp a validé
echarp's avatar
echarp a validé
# To display a patched diff for event descriptions
# A generic library to administrate the tool
echarp's avatar
echarp a validé
gem 'activeadmin'
echarp's avatar
echarp a validé

echarp's avatar
echarp a validé
# Rails engine for static pages
gem 'high_voltage'

echarp's avatar
echarp a validé
group :development, :test do
  # Use sqlite3 as the database for Active Record
  gem 'sqlite3'
  # Call 'byebug' anywhere in the code to stop execution and get a debugger
  # console
echarp's avatar
echarp a validé
  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'

  # Scanning the Gemfile for insecure dependencies based on published CVEs
  gem 'bundler-audit'

  gem 'guard-bundler', require: false
  gem 'guard-livereload', require: false
echarp's avatar
echarp a validé
  gem 'haml_lint'
  # Security checks
  gem 'brakeman', require: false
echarp's avatar
echarp a validé
end
echarp's avatar
echarp a validé
group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '~> 2.13'
  # To test objects assigned in controllers, much easier...
  gem 'rails-controller-testing'
  gem 'selenium-webdriver'
end

group :development, :test, :assets do
  # Use CoffeeScript for .coffee assets and views
  gem 'coffee-rails'
  # Use SASS for stylesheets
  gem 'sass-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 'modernizr-rails'

  # A superb font to use as icons
  gem 'font-awesome-sass'

  # Carte openstreetmap
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

  # Use postgresql as the database for Active Record
  # gem 'pg'
  # Use mysql as the database for Active Record
echarp's avatar
echarp a validé

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]