-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (49 loc) · 1.15 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
gem 'rails', "7.1.3.2"
gem "trilogy"
gem 'puma'
gem 'cssbundling-rails'
gem 'importmap-rails'
gem 'propshaft'
gem 'kaminari'
gem 'sorcery'
gem 'redis'
gem 'redis-namespace'
gem 'connection_pool'
gem 'newrelic_rpm'
gem 'acts-as-taggable-on'
gem 'omniauth-twitch'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'rouge'
gem "chartkick"
gem 'stimulus-rails'
gem "rmagick" # グレースケース化とピクセルの色を取得しているだけなのでoverkillかも
# 設定ファイルのパースとバリデーションのために使っている
gem 'procon_bypass_man'
gem 'bootsnap', require: false
gem "uri", ">= 0.12.2"
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
gem 'pry'
gem 'pry-rails'
gem 'factory_bot_rails'
end
group :test do
gem 'bundle-audit'
gem 'mock_redis'
gem 'timecop'
gem 'json-schema'
end
group :development do
gem 'listen'
gem 'brakeman'
gem 'foreman'
gem "action_cable_client"
end
group :lint do
gem "rubocop", require: false
end