-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (48 loc) · 1.07 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.2.2'
gem 'active_storage_validations'
gem 'bootsnap', require: false
gem 'cloudinary'
gem 'devise', '~> 4.9'
gem 'image_processing', '~> 1.12'
gem 'importmap-rails'
gem 'jbuilder'
gem 'hotwire-rails'
gem 'meta-tags'
gem 'pg', '~> 1.1'
gem 'puma', '>= 5.0'
gem 'rails', '~> 7.1.1'
gem 'redcarpet', '~> 3.6'
gem 'requestjs-rails'
gem 'rouge', '~> 4.1'
gem 'rubocop'
gem 'sassc', '~> 2.4'
gem 'shadcn-ui'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'tailwindcss-rails'
gem 'tailwind_merge'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[windows jruby]
gem 'ruby-vips', '~> 2.2'
gem 'rack-cors'
group :development, :test do
gem 'debug', platforms: %i[mri windows]
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-rails'
gem 'rspec-rails', '~> 6.0.0'
gem 'ruby-lsp', require: false
end
group :development do
gem 'guard'
gem 'guard-livereload', '~> 2.4', require: false
gem 'rack-livereload'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
end