-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (42 loc) · 912 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
# web
gem "rails", "~> 7.0.3", ">= 7.0.3.1"
gem "puma", "~> 5.0"
# stores
gem "sqlite3", "~> 1.4"
gem "redis", "~> 4.0"
# gem "kredis"
# assets
gem "sprockets-rails"
gem "jsbundling-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "cssbundling-rails"
# gem "sassc-rails"
# api
gem "jbuilder"
# security
gem "bcrypt", "~> 3.1.7"
# others
gem "tzinfo-data"
gem "image_processing", "~> 1.2"
group :development, :test do
gem "debug"
gem "byebug"
gem "rspec-rails"
gem "factory_bot_rails"
gem "faker"
gem "rubocop", require: false
gem "solargraph", require: false
end
group :test do
gem "database_cleaner-active_record", "~> 2.0", :group => :test
end
group :development do
gem "web-console"
gem "rack-mini-profiler"
gem "rubocop-rails", require: false
# gem "spring"
end