This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
61 lines (55 loc) · 1.53 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
gem "awesome_print", "1.9.2"
gem "bootsnap", "1.13.0", require: false
gem "bytesize", "0.1.2"
gem "cssbundling-rails", "1.1.1"
gem "devise", "4.8.1"
gem "down", "5.3.1"
gem "enumerate_it", "3.2.2"
gem "friendly_id", "5.4.2"
gem "httparty", "0.20.0"
gem "i18n_data", "0.16.0"
gem "jsbundling-rails", "1.0.3"
gem "meta-tags", "2.17.0"
gem "money-rails", "1.15.0"
gem "nokogiri", "1.13.8"
gem "omniauth", "2.0.4"
gem "omniauth-discord", "1.0.2"
gem "omniauth-rails_csrf_protection", "1.0.1"
gem "omniauth-twitter", "1.4.0"
gem "pagy", "5.10.1"
gem "pg", "1.4.3"
gem "pg_search", "2.3.6"
gem "propshaft", "0.6.4"
gem "puma", "5.6.5"
gem "rails", "7.0.3.1"
gem "rails-i18n", "7.0.5"
gem "sentry-rails", "5.4.2"
gem "service_actor", "3.3.0"
gem "stimulus-rails", "1.1.0"
gem "turbo-rails", "1.1.1"
gem "tzinfo-data", "2.0.4", platforms: %i[mingw mswin x64_mingw jruby]
gem "view_component", "2.71.0"
group :development, :test do
gem "debug", "1.6.2", platforms: %i[mri mingw x64_mingw]
gem "factory_bot_rails", "6.2.0"
gem "faker", "2.23.0"
end
group :development do
gem "erb_lint", "0.2.0"
gem "rack-mini-profiler", "3.0.0"
gem "rubocop", "1.36.0"
gem "rubocop-performance", "1.14.3"
gem "rubocop-rails", "2.15.2"
gem "rubocop-rspec", "2.12.1"
gem "web-console", "4.2.0"
end
group :test do
gem "rspec-rails", "5.1.2"
gem "shoulda-matchers", "5.1.0"
gem "simplecov", "0.21.2"
gem "webmock", "3.18.1"
end