-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
52 lines (41 loc) · 764 Bytes
/
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
source "https://rubygems.org"
ruby "3.2.2"
gem "pg", "~> 1.1"
gem "puma", ">= 5.0"
gem "rails", "~> 7.1.3"
gem "redis", ">= 4.0.1"
gem "sidekiq"
gem "sidekiq-failures"
gem "based_uuid"
gem "uuid7"
# JavaScript & assets
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "propshaft"
gem "stimulus-rails"
gem "turbo-rails"
# Security
gem "bcrypt", "~> 3.1.7"
gem "pwned"
# Geocoding
gem "geocoder"
gem "maxminddb"
# Other
gem "amazing_print"
gem "browser"
group :development do
gem "rack-mini-profiler"
gem "web-console"
end
group :test do
gem "capybara"
gem "mocha"
gem "selenium-webdriver"
gem "webdrivers"
end
group :development, :test do
gem "dotenv-rails"
gem "erb_lint", require: false
gem "factory_bot_rails"
gem "standard"
end