-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
48 lines (38 loc) · 820 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.6'
gem 'rails', '~> 7'
gem 'sprockets', '~> 4.2.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 6.4'
gem 'oj'
gem 'http'
gem 'addressable'
gem 'sidekiq'
gem 'sidekiq-bulk'
gem 'dotenv'
gem 'nokogiri'
gem "hiredis-client", "~> 0.22.1"
gem 'redis-namespace', '~> 1.10'
gem 'redis', '~> 5.1'
gem 'redis-rails'
gem 'fast_blank'
gem 'bootsnap', '>= 1.4', require: false
group :development, :test do
gem 'byebug'
gem 'fuubar'
gem 'rspec-rails'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.10'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
end
group :test do
gem 'rspec-sidekiq'
end
group :production do
gem 'lograge'
end
gem 'tzinfo-data', '~> 1.2024'
gem 'resolv', '~> 0.3.0'