-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
43 lines (39 loc) · 905 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
source 'https://rubygems.org'
ruby '>= 3.1.6'
gemspec
gem 'rails', '~> 7.0.0'
gem 'mysql2'
gem 'pg'
gem 'active_model_serializers'
gem 'httpclient'
group :development, :test do
gem 'faker'
gem 'dotenv-rails'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
gem 'rspec-mocks'
gem 'database_cleaner-active_record'
gem 'database_cleaner-redis'
gem 'factory_bot_rails'
gem 'rubocop'
gem 'rubocop-factory_bot'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'pry'
gem 'pry-rails'
gem 'pry-byebug'
gem 'spring-commands-rspec'
gem 'webmock'
# Identity requirements
gem 'audited', '~> 5.4.2'
gem 'phony'
gem 'redis', '~> 4.8'
gem 'sidekiq', '~> 6.0'
gem 'sidekiq-batch', '~> 0.1.8'
gem 'sidekiq-killswitch'
gem 'sidekiq-unique-jobs', '~> 7.1.33'
gem 'sprockets-rails'
gem 'zip'
end