This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
57 lines (51 loc) · 1.45 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.0.3"
gem "activerecord-session_store", "~> 2.0.0"
gem "administrate", "~> 0.17"
gem "bootsnap", ">= 1.4.2", require: false
gem "cable_ready", "~> 4.1"
gem "cssbundling-rails", "~> 1.1"
gem "delayed_job", "~> 4.1.9"
gem "delayed_job_active_record", "~> 4.1.5"
gem "hiredis", "~> 0.6.3"
gem "http_accept_language"
gem "jsbundling-rails", "~> 1.0"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 4.3"
gem "pundit", "~> 2.1"
gem "rails", "~> 7.0.0"
gem "redis", ">= 4.0", require: ["redis", "redis/connection/hiredis"]
gem "sentry-raven", "~> 3.1"
gem "sorcery", "~> 0.16"
gem "sprockets-rails", "~> 3.4.2"
gem "stimulus_reflex", "~> 3.4"
gem "view_component", "~> 2.50"
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv"
gem "factory_bot_rails"
gem "faker"
gem "rspec-rails", "~> 4.0.0"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
end
group :development do
gem "foreman"
gem "guard-livereload", "~> 2.5", require: false
gem "listen", "~> 3.2"
gem "rack-livereload"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara"
gem "capybara-screenshot"
gem "database_cleaner-active_record"
gem "rails-controller-testing"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "transactional_capybara"
end
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]