-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (48 loc) · 1.09 KB
/
Gemfile
File metadata and controls
56 lines (48 loc) · 1.09 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
52
53
54
55
56
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.4.4"
gem "rails", "~> 8.1.2", ">= 8.1.2.1"
gem "bootsnap", require: false
gem "csv"
gem "daemons"
gem "devise", "~> 5.0"
gem "faker", "~> 3.6.1"
gem "font-awesome-rails"
gem "image_processing", "~> 1.14"
gem "importmap-rails"
gem "jbuilder"
gem "lucide-rails"
gem "pg", "~> 1.6"
gem "propshaft"
gem "puma", ">= 5.0"
gem "pundit", "~> 2.5"
gem "shadcn-ui", "~> 0.0.15"
gem "solid_queue", "~> 1.4"
gem "stimulus-rails"
gem "strong_migrations", "~> 2.5"
gem "tailwindcss-rails"
gem "turbo-rails"
gem "discard", "~> 1.4"
gem "tzinfo-data", platforms: %i[windows jruby]
group :development, :test do
gem "brakeman", require: false
gem "bundler-audit", require: false
gem "debug", platforms: %i[mri windows]
gem "erb_lint", require: false
gem "pry", "~> 0.16.0"
gem "pry-byebug"
gem "rubocop"
gem "rubocop-rails"
end
group :development do
gem "i18n-tasks"
gem "web-console"
end
group :test do
gem "capybara"
gem "factory_bot_rails"
gem "mocha"
gem "selenium-webdriver"
gem "simplecov", require: false
gem "webmock"
end