-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (39 loc) · 1.12 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.6'
gem 'active_storage_validations', '~> 1.1', '>= 1.1.4'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 5.3.3'
gem 'devise'
gem 'enumerate_it'
gem 'font-awesome-rails', '4.7.0.9'
gem 'kaminari', '>= 1.2.2'
gem 'pg', '~> 1.3.5'
gem 'puma', '~> 6.6'
gem 'rails', '7.2.2'
gem 'sass-rails'
gem 'simple_form', '~> 5.3'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'uglifier', '>= 1.3.0'
gem 'view_component', '~> 2'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot', '6.2.1'
gem 'factory_bot_rails', '6.2.0'
gem 'faker', require: false
gem 'rspec-rails', '~> 7'
gem 'rubocop-rspec', require: false
end
group :test do
gem 'capybara', '~> 3.40'
gem 'rails-controller-testing'
gem 'shoulda-matchers', '~> 4.0'
gem 'simplecov', '~> 0.21.2', require: false
end
group :development do
gem 'listen', '~> 3.9'
gem 'rubocop-rails', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end