Skip to content
Snippets Groups Projects
Gemfile 1.35 KiB
Newer Older
Arnaud Levy's avatar
Arnaud Levy committed
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

Arnaud Levy's avatar
Arnaud Levy committed
ruby '2.7.4'
Arnaud Levy's avatar
Arnaud Levy committed

# Infrastructure
gem 'pg', '~> 1.1'
gem 'aws-sdk-s3'
gem 'puma'
gem 'image_processing'
Sébastien Gaya's avatar
Sébastien Gaya committed
gem 'mini_magick'
Arnaud Levy's avatar
Arnaud Levy committed
gem 'delayed_job_active_record'
gem 'delayed_job_web'
gem 'bootsnap', '>= 1.4.4', require: false
pabois's avatar
pabois committed
gem 'gdpr'
Arnaud Levy's avatar
Arnaud Levy committed

# Back
gem 'rails'
gem 'rails-i18n'
gem 'devise'
gem 'devise-i18n'
gem 'cancancan'
gem 'simple_form'
pabois's avatar
pabois committed
pabois's avatar
pabois committed
gem 'simple_form_bs5_file_input'#, path: '../simple_form_bs5_file_input'
Arnaud Levy's avatar
Arnaud Levy committed
Arnaud Levy's avatar
Arnaud Levy committed
gem 'octokit'
Arnaud Levy's avatar
Arnaud Levy committed
Arnaud Levy's avatar
Arnaud Levy committed
gem 'sanitize'
Arnaud Levy's avatar
Arnaud Levy committed

group :development, :test do
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
Arnaud Levy's avatar
Arnaud Levy committed
end

group :development do
  gem 'web-console', '>= 4.1.0'
  gem 'rack-mini-profiler', '~> 2.0'
  gem 'listen', '~> 3.3'
  gem 'spring'
  gem 'annotate'
end

group :test do
  gem 'capybara', '>= 3.26'
  gem 'selenium-webdriver'
  gem 'webdrivers'
end

gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]