-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gemfile
55 lines (47 loc) · 1.05 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
gem "bcrypt", "~> 3.1.7"
gem "bootsnap", require: false
gem "cssbundling-rails"
gem "image_processing", "~> 1.2"
gem "jbuilder"
gem "jsbundling-rails"
gem "pg", "~> 1.1"
gem "puma", "~> 5.6"
gem "sprockets-rails"
gem "stimulus-rails"
gem "turbo-rails"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "view_component"
gem 'acts-as-taggable-on', '~> 9.0'
gem 'devise'
gem 'friendly_id', '~> 5.4.0'
gem 'meta-tags'
gem 'pagy'
gem 'rack-canonical-host'
gem 'rails', '~> 7.0', '>= 7.0.4.2'
gem 'sd_notify', '~> 0.1.1'
gem 'sitemap_generator'
gem 'pundit'
gem 'phlex-rails'
gem 'rorvswild'
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'faker'
# gem "rails_live_reload"
gem "dotenv-rails", "~> 2.7"
gem "lookbook", ">= 2.0.5"
end
group :development do
gem "web-console"
gem 'annotate'
end
group :test do
gem "capybara"
gem "selenium-webdriver"
end
# Admin
gem "avo"
# Search
gem "ransack"