-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
57 lines (52 loc) · 1.06 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
gem 'rails', '~> 7.1.0'
gem 'action_policy'
gem 'acts_as_list'
gem 'bootsnap', require: false
gem 'business'
gem 'dotenv-rails'
gem 'faker'
gem 'geocoder'
gem 'good_job'
gem 'human_attributes'
gem 'image_processing', '~> 1.2'
gem 'importmap-rails'
gem 'jbuilder'
gem 'lograge'
gem 'meta-tags'
gem 'pagy'
gem 'pg'
gem 'puma'
gem 'rails-i18n'
gem 'redis'
gem 'simple_form'
gem 'slim-rails'
gem 'sorcery'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'store_model'
gem 'tailwindcss-rails'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
group :development do
gem 'annotate'
gem 'chusaku', require: false
gem 'letter_opener'
gem 'web-console'
end
group :development, :test do
gem 'bullet'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
gem 'webdrivers'
end