-
Notifications
You must be signed in to change notification settings - Fork 134
/
Gemfile
119 lines (95 loc) · 2.66 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem 'puma', '~> 6.4.3'
gem 'rails', '~> 7.2.1'
gem 'rails-i18n', '~> 7.0.5'
gem 'rack-cors', '~> 2.0.2'
gem 'rack', '~> 3.0.11'
# DB & Cache
gem 'pg', '>= 0.18', '< 2.0'
gem "solid_cache", "~> 1.0.6"
# Logger
gem 'lograge', '~> 0.14.0'
# API
gem 'active_model_serializers', '~> 0.10.14'
gem 'graphql', '~> 2.4.2'
gem 'health_check', '~> 3.1.0'
gem 'tiny_appstore_connect', '~> 0.1.12'
# View
gem 'jb', '~> 0.8.2'
gem 'slim-rails', '~> 3.6.3'
gem 'kramdown', '~> 2.4'
gem 'simple_form', '~> 5.3'
gem 'rswag-api', '~> 2.15.0'
gem 'rswag-ui', '~> 2.15.0'
gem 'ostruct' # needs in rswag
# Model
gem 'friendly_id', '~> 5.5.1'
gem 'kaminari', '~> 1.2.2'
gem 'carrierwave', '~> 3.0.7'
gem 'webp-ffi', '~> 0.4.0'
# Helper
gem 'rake', '~> 13.0.4'
gem 'rails-settings-cached', '~> 2.9.5'
gem 'app-info', '~> 3.2.0'
gem 'faraday', '~> 2.12.0'
gem 'rqrcode'
## Auth
gem 'pundit', '~> 2.4.0'
gem 'devise', '~> 4.9.4'
gem 'devise-i18n', '~> 1.12.1'
gem 'omniauth', '~> 2.1.2'
gem 'omniauth-rails_csrf_protection', '~> 1.0.2'
gem 'omniauth-google-oauth2', '~> 1.0.1'
gem 'omniauth-gitlab', '~> 3.0.0'
gem 'omniauth-feishu', '~> 0.1.8'
gem 'gitlab_omniauth-ldap', '~> 2.2.0', require: 'omniauth-ldap'
gem 'omniauth_openid_connect', '0.8.0'
## UDID
gem 'openssl', '~> 3.2.0'
gem 'plist', '~> 3.7.1'
## OS
gem 'sys-filesystem', '~> 1.5.3'
gem 'vmstat', '~> 2.3.0'
gem 'pghero', '~> 3.6.1'
## Exception handler
gem 'sentry-ruby', '~> 5.21.0'
gem 'sentry-rails', '~> 5.21.0'
# Background job
gem 'good_job', '~> 4.4.2'
gem 'activejob-status', '~> 1.0.2'
# Assets
## Use jsbundling-rails, cssbundling-rails to run rake tasks, core is build/build:css in package.json
gem 'propshaft', '1.1.0'
gem 'jsbundling-rails', '~> 1.3'
gem 'cssbundling-rails', '~> 1.4'
## Javascript
gem 'stimulus-rails', '~> 1.3.4'
gem 'turbo-rails', '~> 2.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.7', require: false
group :development do
gem 'listen', '>= 3.0.5', '< 3.10'
gem 'web-console', '>= 3.3.0'
gem 'graphiql-rails'
## VSCode debug: https://marketplace.visualstudio.com/items?itemName=KoichiSasada.vscode-rdbg
gem 'debug', '~> 1.9.2'
# better rails
gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
# helpers
gem 'letter_opener', '~> 1.10'
gem 'letter_opener_web', '~> 3.0'
end
group :development, :test do
gem 'dotenv-rails'
gem 'rubocop', '>= 0.70', require: false
gem 'rubocop-rails', require: false
gem 'pry-rails'
gem 'pry-rescue'
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'rswag-specs'
end