-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
134 lines (99 loc) · 3.1 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
# 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-session', '~> 2.0'
gem 'rackup', '~> 2.1'
gem 'rails', '~> 7.1'
# 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', '~> 1.4'
# api serializer
gem 'jsonapi-serializer', '2.2.0'
# translating
gem 'i18n-tasks', '~> 1.0.13'
# active jobs adapter
gem 'que', '~> 2.3'
gem 'que-view', '~> 0.3'
gem 'whenever', require: false
# http client
gem 'faraday', '~> 2.0'
# Pretty print
gem 'awesome_print'
# running application
gem 'foreman'
# email tracking system
gem 'emailbutler'
# A performance dashboard for Postgres
gem 'pghero'
# reputation system
gem 'kudos'
# database comments
gem 'commento'
# active record interface for json files
gem 'frozen_record'
# performance metrics
gem 'skylight'
# bugs tracking
gem 'bugsnag'
# view pagination
gem 'pagy', '~> 8.0'
# notification layer
gem 'active_delivery'
# antibot captcha
gem 'recaptcha', require: 'recaptcha/rails'
group :development, :test do
gem 'bullet', git: 'https://github.com/flyerhzm/bullet', branch: 'main'
gem 'cypress-on-rails', '~> 1.0'
gem 'rubocop', '~> 1.35', require: false
gem 'rubocop-performance', '~> 1.14', require: false
gem 'rubocop-rails', '~> 2.15', require: false
gem 'rubocop-rspec', '~> 2.12', require: false
end
group :development do
# 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
# security checks
gem 'brakeman'
# 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', '~> 6.0'
gem 'shoulda-matchers', '~> 6.0'
gem 'simplecov', require: false
gem 'timecop'
end