-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
149 lines (111 loc) · 3.36 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rack', '~> 3.0'
gem 'rack-brotli'
gem 'rack-session', '~> 2.0'
gem 'rackup', '~> 2.1'
gem 'rails', '7.2.2'
# cache store
gem 'redis', '~> 5.0'
gem 'redis-rack', git: 'https://github.com/redis-store/redis-rack', branch: 'master'
gem 'redis-rails', git: 'https://github.com/redis-store/redis-rails', branch: 'master'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.4'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '~> 6.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
# Js and css
gem 'jsbundling-rails', '~> 1.0'
gem 'sprockets-rails'
gem 'tailwindcss-rails'
# A framework for building view components
gem 'view_component', '~> 3.0', require: 'view_component/engine'
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
gem 'bcrypt', '~> 3.1'
# A ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard
gem 'jwt', '~> 2.5'
# dry-rb system
gem 'dry-auto_inject', '~> 1.0'
gem 'dry-container', '~> 0.11.0'
gem 'dry-validation', '~> 1.10'
# Catch unsafe migrations in development
gem 'strong_migrations', '~> 2.0'
# Pretty print
gem 'awesome_print'
# running application
gem 'foreman'
# A performance dashboard for Postgres
gem 'pghero'
# http client
gem 'faraday', '~> 2.0'
# performance metrics
gem 'skylight'
# bugs tracking
gem 'bugsnag'
# background jobs
gem 'que', '~> 2.3'
gem 'que-view', '~> 0.3'
gem 'whenever', require: false
# authorization
gem 'action_policy'
# Work with JSON-backed attributes
gem 'store_model'
# achievements system
gem 'kudos'
# view pagination
gem 'pagy', '~> 9.0'
# database comments
gem 'commento'
# email tracking system
gem 'emailbutler'
# api serializer
gem 'oj'
gem 'panko_serializer'
# notification layer
gem 'active_delivery'
# antibot captcha
gem 'recaptcha', require: 'recaptcha/rails'
# API documentation
gem 'rswag-api'
gem 'rswag-ui'
# PDF generating
gem 'prawn'
gem 'prawn-table'
# engines
gem 'authkeeper', path: 'engines/authkeeper'
group :development, :test do
gem 'bullet', git: 'https://github.com/flyerhzm/bullet', branch: 'main'
gem 'cypress-on-rails', '~> 1.0'
gem 'rswag-specs'
gem 'rubocop', '~> 1.35', require: false
gem 'rubocop-factory_bot', '~> 2.0', require: false
gem 'rubocop-performance', '~> 1.14', require: false
gem 'rubocop-rails', '~> 2.15', require: false
gem 'rubocop-rspec', '~> 3.0', require: false
gem 'rubocop-rspec_rails', '~> 2.0', require: false
end
group :development do
# security checks
gem 'brakeman'
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem 'rack-mini-profiler', '>= 2.3.3'
gem 'capistrano', '~> 3.17', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rails', '~> 1.6', require: false
gem 'capistrano-rvm', require: false
# email previews
gem 'letter_opener'
end
group :test do
gem 'database_cleaner', '~> 2.0'
gem 'factory_bot_rails', '~> 6.4'
gem 'json_spec', '1.1.5'
gem 'rails-controller-testing', '1.0.5'
gem 'rspec-rails', '~> 7.0'
gem 'shoulda-matchers', '~> 6.0'
gem 'simplecov', require: false
end