-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
73 lines (43 loc) · 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
source "https://rubygems.org"
ruby "3.2.2"
gem "rails", "~> 7.1.3"
gem "sprockets-rails"
gem "sqlite3", "~> 1.4"
gem "puma", ">= 5.0"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "redis", ">= 4.0.1"
gem 'redis-rails'
gem 'discard', '~> 1.2'
gem "tzinfo-data", platforms: %i[ windows jruby ]
gem "bootsnap", require: false
gem "image_processing", "~> 1.2"
group :development, :test do
gem "debug", platforms: %i[ mri windows ]
gem "rswag"
gem 'factory_bot_rails', '~> 6.0'
gem "rspec-rails"
gem "shoulda-matchers"
gem "faker"
gem 'dotenv-rails'
end
group :development do
gem "web-console"
gem "bullet"
gem 'rinruby', '~> 2.0.3'
end
gem "devise", "~> 4.9"
gem "jwt", "~> 2.8"
gem "rack-cors", "~> 2.0"
gem "state_machines-activerecord", "~> 0.9.0"
gem "kaminari", "~> 1.2"
gem 'ruby-vips'
gem "faraday", "~> 2.9"
gem "sidekiq", "~> 7.2"
gem "eventmachine", "~> 1.2"
gem 'simplecov', require: false
gem 'letter_opener'
gem 'geocoder'
gem 'matrix'