-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (39 loc) · 1.09 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.1.3'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'devise'
gem 'enumerate_it'
gem 'font-awesome-rails', '4.7.0.8'
gem 'jbuilder', '~> 2.5'
gem 'pg', '~> 1.3.5'
gem 'puma', '~> 5.6'
gem 'rails', '7.0.5.1'
gem 'sass-rails'
gem 'simple_form', '5.1.0'
gem 'sprockets-rails'
gem 'turbolinks', '~> 5'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'uglifier', '>= 1.3.0'
gem 'view_component', '2.66.0'
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', '~> 5.1.0'
gem 'rubocop-rspec', require: false
end
group :test do
gem 'capybara'
gem 'rails-controller-testing'
gem 'shoulda-matchers', '~> 4.0'
gem 'simplecov', '~> 0.13.0', require: false
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rubocop-rails', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end