-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
69 lines (47 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright (c) 2016 Scott O'Hara, oharagroup.net
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: '.tool-versions'
# Web application framework
gem 'rails', '7.2.1.1'
# Database
gem 'pg', '1.5.8'
# App server
gem 'puma', '6.4.3'
# For JSON serialisation
gem 'active_model_serializers', '0.10.14'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '1.18.4', require: false
group :development, :test do
# Cleans database on each test run
gem 'database_cleaner', '2.0.2'
# Test factories
gem 'factory_bot_rails', '6.4.3'
# BDD testing framework
gem 'rspec-rails', '7.0.1'
# Code coverage
gem 'simplecov', '0.22.0', require: false
# Required by RSpec in Rails >= 5 for 'assigns'
gem 'rails-controller-testing', '1.0.5'
# Code style checker
gem 'rubocop', '1.67.0', require: false
# Rubocop Rails cops
gem 'rubocop-rails', '2.26.2', require: false
# Rubocop Performance cops
gem 'rubocop-performance', '1.22.1', require: false
# Rubocop RSpec cops
gem 'rubocop-rspec', '3.1.0', require: false
# Rubocop RSpec Rails cops
gem 'rubocop-rspec_rails', '2.30.0', require: false
# Rubocop FactoryBot cops
gem 'rubocop-factory_bot', '2.26.1', require: false
# Rubocop Rake cops
gem 'rubocop-rake', '0.6.0', require: false
# Shared Rubocop config
gem 'rubocop-config-oharagroup', '2.5.0', require: false
# Debugging
gem 'debug', '1.9.2', require: 'debug/prelude'
# Static analysis for security vulnerabilities
gem 'brakeman', '6.2.2', require: false
end