-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
82 lines (64 loc) · 2.22 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.0"
gem "rails", "~> 8.0.0"
gem "pg", "~> 1.5"
gem "puma", "~> 6.5"
gem "redis", "~> 5.3"
gem "sprockets-rails"
gem "bootsnap", require: false
gem "hotwire-livereload", "~> 1.4"
gem "importmap-rails", "~> 2.0"
gem "sass-rails"
gem "stimulus-rails"
gem "turbo-rails"
gem "bcrypt", "~> 3.1.20"
gem "brakeman" # Look for security vulnerabilities
gem "bundler-audit" # Check dependencies for vulnerabilities
gem "cancancan"
gem "devise", "~> 4.9"
gem "devise-i18n"
# FIXME: See https://github.com/vivesvoies/court-message/issues/227
# gem "devise_invitable", "~> 2.0.0"
gem "devise_invitable", git: "https://github.com/scambra/devise_invitable.git", ref: "d2b93edb8bf6e4ac81fa15ff4b948eafe1d456fc"
gem "lograge" # One-line-per-event format logs
gem "phony_rails"
gem "rails-i18n"
gem "vonage", "~> 7.28"
gem "avo", ">= 3.2.1"
gem "stackprof"
gem "sentry-ruby"
gem "sentry-rails"
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "factory_bot_rails"
gem "faker"
gem "minitest-reporters"
end
group :development do
gem "annotate", git: "https://github.com/tnir/annotate_models/", branch: "rails-8"
gem "rack-mini-profiler"
gem "rubocop-minitest", require: false
gem "rubocop-rails", require: false
# gem "web-console"
gem "better_errors", git: "https://github.com/zinc-collective/better_errors/", branch: "zs/tell-turbo-to-reload-the-page"
gem "binding_of_caller"
gem "rubocop-rails-omakase", require: false
end
group :test do
gem "capybara"
gem "database_cleaner-active_record"
gem "selenium-webdriver"
gem "webdrivers"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
### Defaults and suggestions from the Rails template:
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
# gem "jbuilder"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
# gem "jsbundling-rails"
# gem "cssbundling-rails"