-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
43 lines (28 loc) · 782 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~> 7.1', '>= 7.1.3.4'
gem 'sprockets-rails'
gem 'sqlite3', '>= 1.4'
gem 'puma', '>= 5.0'
gem 'tzinfo-data', platforms: %i[ windows jruby ]
gem 'htmlbeautifier'
gem 'bootsnap', require: false
group :development, :test do
gem 'brakeman', require: false
gem 'rubocop-rails-omakase', require: false
end
group :development do
gem 'web-console'
end
gem 'rubocop-rails_config', '~> 1.16'
gem 'pry-rails', '~> 0.3.11'
gem 'view_component', '~> 3.13'
gem 'rspec-rails', '~> 6.1', '>= 6.1.3'
gem 'capybara', '~> 3.40'
gem 'lefthook', '~> 1.7'
gem 'faker', '~> 3.4', '>= 3.4.2'
gem 'slim-rails', '~> 3.6', '>= 3.6.3'
gem 'phlex-rails', '~> 1.2', '>= 1.2.1'
group :test do
gem 'benchmark-ips'
end