This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (58 loc) · 1.36 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.3.0'
gem 'aasm', '~> 5.5.0'
gem 'activeadmin', '~> 3.2.2'
gem 'after_commit_everywhere', '~> 1.0'
gem 'bcrypt', '~> 3.1.7'
gem 'bootstrap5-kaminari-views', '~> 0.0.1'
gem 'cssbundling-rails'
gem 'dotenv-rails', '~> 2.8.1'
gem 'httparty', '~> 0.21.0'
gem 'image_processing', '~> 1.2'
gem 'jbuilder'
gem 'jsbundling-rails'
gem 'jwt', '~> 2.7.1'
gem 'kaminari', '~> 1.2.2'
gem 'nokogiri', '~> 1.16.5'
gem 'pg', '~> 1.1'
gem 'pg_search', '~> 2.3.6'
gem 'puma', '>= 5.0'
gem 'rack', '~> 3.0.8'
gem 'rails', '~> 7.1.0'
gem 'rbnacl', '~> 7.1.1'
gem 'redis', '~> 5.0.7'
gem 'sanitize', '~> 6.1.0'
gem 'sassc-rails', '~> 2.1.2'
gem 'sidekiq', '~> 7.2.4'
gem 'sidekiq-cron', '~> 1.12.0'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails'
group :development, :test do
gem 'brakeman'
gem 'bundler-audit'
gem 'debug'
gem 'factory_bot_rails'
gem 'pry'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-rails'
gem 'rubocop-rake'
gem 'rubocop-rspec'
end
group :development do
gem 'bcrypt_pbkdf'
gem 'capistrano', '~> 3.18.0', require: false
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'ed25519'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
gem 'shoulda-matchers', '~> 6.0.0'
gem 'simplecov', require: false
gem 'webmock'
end