-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
161 lines (125 loc) · 3.84 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.3"
# Environment variables management
gem "dotenv-rails"
# Policies management
gem "pundit"
# Http client
gem "faraday"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", ">= 6.0.4.1"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
# Use Puma as the app server
gem "puma", "< 7"
# Use SCSS for stylesheets
gem "sass-rails", ">= 6"
# JavaScript Bundling for Rails
gem "jsbundling-rails"
# Easy use of react with rails
gem "react-rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
gem "responders"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 4.0"
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# AR Pagination
gem "kaminari"
# PG search
gem "pg_search"
# Adds advisory locking (mutexes)
gem "with_advisory_lock"
# CSS styled emails with stylesheets
gem "premailer-rails"
# API documentation
gem "rswag"
# Send SMS & emails with Brevo
gem "sib-api-v3-sdk"
# Queuing system
gem "sidekiq"
# Job scheduling
gem "sidekiq-cron"
# Advance queue management
gem "sidekiq-limit_fetch"
# Hotwire
gem "turbo-rails"
# Monitor errors
gem "sentry-ruby"
gem "sentry-rails"
gem "sentry-sidekiq"
# JSON web token
gem "jwt"
# Phone validator
gem "phonelib"
# Stats graphs
gem "groupdate"
gem "chartkick"
# generate QR codes
gem "rqrcode", "~> 2.0", require: false
# gem needed to be defined explicitely with ruby 3
gem "rexml"
gem "addressable"
gem "agent_connect", github: "gip-inclusion/agent_connect_engine"
# Easily generate PDF from HTML
gem "wicked_pdf"
gem "wkhtmltopdf-binary"
# CORS support
gem "rack-cors"
# Sending ZIP
gem "rubyzip"
# Simple Fast Declarative Serialization Library
gem "blueprinter"
# A Rails engine for creating super-flexible admin dashboards
gem "administrate", git: "https://github.com/thoughtbot/administrate.git"
# manage attachments from administrate dashboards
gem "administrate-field-active_storage"
# Use Active Storage variant
gem "image_processing"
# Required for ActiveStorage for S3 compatible storage
gem "aws-sdk-s3", require: false
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# APM
gem "skylight"
# Sets migrations timeouts
gem "activerecord-safer_migrations"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "rspec-rails"
# Strategies for cleaning databases. Can be used to ensure a clean slate for testing.
gem "database_cleaner"
gem "factory_bot_rails"
gem "rubocop"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "prosopite"
gem "pg_query"
# Run Test::Unit / RSpec / Cucumber / Spinach in parallel
gem "parallel_tests"
gem "anonymizer", git: "https://github.com/betagouv/rdv-service-public.git",
branch: "production",
glob: "lib/anonymizer/anonymizer.gemspec"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", "~> 3.2"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring", "~> 3.0.0"
gem "letter_opener_web" # Preview email in the default browser instead of sending it.
gem "rails-erd"
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15"
gem "selenium-webdriver", "~> 4.4"
gem "pdf-reader"
gem "rack_session_access"
gem "webmock"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]