-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (50 loc) · 1.17 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
ruby '3.1.0'
source 'https://rubygems.org'
gem 'rails', '= 7.0.1'
gem "sprockets-rails", ">= 3.4.1"
# API Helpers
gem 'request_store'
# Rack CORS
gem 'rack-cors', require: 'rack/cors'
# Graphql
gem 'graphql', '= 1.13.4'
# Code services
gem 'dry-monads', require: 'dry/monads/all'
# Global configs
gem 'global', '>= 2.1'
# Database
gem 'mysql2', '~> 0.5'
# Authentication
gem 'bcrypt'
gem 'jwt'
# Background Jobs
gem 'redis'
gem 'sidekiq', '~> 6'
gem 'sinatra', require: false
# Web server
gem 'puma', '>= 5.3.1', '< 6'
group :development, :test do
# Linting
gem 'rubocop'
# Testing
gem 'rspec'
gem 'rack-test'
# Environment bootstrap
gem 'dotenv-rails'
# Spring
gem 'spring'
# Model Annotations
# awaiting Rails 7 support - https://github.com/ctran/annotate_models/issues/910#issuecomment-997003275
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'annotate', github: 'dabit/annotate_models', branch: 'rails-7'
# Seeding information
gem 'faker'
# Autoloader filewatching
gem 'listen', '< 4'
end
group :test do
# Model factories
gem 'factory_bot'
# Database transaction cleaning
gem 'database_cleaner-active_record'
end