-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (44 loc) · 1.04 KB
/
Gemfile
File metadata and controls
51 lines (44 loc) · 1.04 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
# Backend
gem "rails", "~> 8.0.3"
gem "bootsnap", require: false
gem "jbuilder"
gem "tzinfo-data", platforms: %i[windows jruby]
gem "kaminari"
gem "kamal", require: false
gem "thruster", require: false
# Frontend
gem "propshaft"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "tailwindcss-rails", "~> 4.3"
gem "commonmarker"
gem "reactionview", "~> 0.1.2"
gem "herb", force_ruby_platform: RUBY_PLATFORM.include?("darwin")
# Databases
gem "activerecord-postgis-adapter"
gem "bcrypt"
gem "pg"
gem "puma", ">= 5.0"
gem "solid_cache"
gem "solid_queue"
gem "solid_cable"
gem "prosopite"
gem "pg_query"
group :development, :test do
gem "debug", platforms: %i[mri windows], require: "debug/prelude"
gem "brakeman", require: false
gem "rubocop", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails-omakase", require: false
end
group :development do
gem "web-console"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "webmock"
end