-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
122 lines (106 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
source "https://rubygems.org"
# Specify your Ruby version
ruby "3.3.5"
# Rails framework
gem "active_model_serializers", "~> 0"
gem "bootsnap", ">= 1.4.4", require: false
gem "rails", "~> 7.2"
gem "sprockets-rails"
gem "stimulus-rails", "~> 1"
gem "turbo-rails", "~> 2"
# Authentication and Authorization
gem "bcrypt", "~> 3"
gem "jwt", "~> 2.8"
gem "pundit"
# Database and ORM
gem "friendly_id"
gem "kaminari"
gem "kredis", "~> 1"
gem "pg", "~> 1.5.7"
# API and Serialization
gem "json", "~> 2.7"
gem "jsonapi-serializer", "~> 2"
gem "rswag-api"
gem "rswag-ui"
gem "versionist", "~> 2"
# Background Jobs
gem "sidekiq", "~> 7"
# Security
gem "openssl", "~> 3.2"
gem "rack-attack", "~> 6"
gem "rack-cors", "~> 2"
# Utilities
gem "awesome_print"
gem "dotenv-rails"
gem "ostruct", "~> 0"
gem "parallel", "~> 1.26"
gem "retries"
gem "svix"
gem "typhoeus", "~> 1.4"
gem "uri", "~> 0.13.1"
# Redis
gem "redis", "~> 5"
gem "redis-namespace"
gem "redis-rails"
# Development Tools
gem "rb-readline"
gem "ruby-lsp"
gem "traceroute", "~> 0"
# Platform-specific
gem "tzinfo-data", platforms: %i[windows jruby]
# Web Server
gem "puma", "~> 6.4"
group :development do
gem "rails-erd"
gem "web-console", "~> 4"
end
group :test do
gem "brakeman", "~> 6", require: false
gem "bundler-audit", "~> 0"
gem "factory_bot_rails", "~> 6"
gem "rails-controller-testing", "~> 1"
gem "rspec_junit_formatter", "~> 0"
gem "ruby_audit", "~> 2", require: false
gem "selenium-webdriver", "~> 4", require: false
gem "shoulda-matchers", "~> 6"
gem "simplecov", "~> 0.22.0"
gem "simplecov-cobertura", require: false
gem "simplecov-console", require: false
gem "simplecov-lcov", require: false
gem "timecop", "~> 0"
end
group :development, :test do
gem "debug", "~> 1"
gem "faker", "~> 3"
gem "listen", "~> 3.3"
gem "parallel_tests", "~> 4"
gem "rspec-json_expectations"
gem "rspec-rails"
gem "ruby-lsp-rails", "~> 0.3.15"
gem "ruby-lsp-rspec"
gem "spring", "~> 4"
gem "webmock", "~> 3"
end
group :development, :test, :rubocop do
gem "rswag-specs"
gem "rubocop"
gem "rubocop-checkstyle_formatter"
gem "rubocop-erb"
gem "rubocop-factory_bot"
gem "rubocop-git"
gem "rubocop-github"
gem "rubocop-graphql"
gem "rubocop-junit-formatter"
gem "rubocop-md"
gem "rubocop-packaging"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rails_config"
gem "rubocop-rails_deprecation"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "rubocop-rspec_rails"
gem "rubocop-rubycw"
gem "rubocop-shopify"
gem "rubocop-thread_safety"
end