-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
59 lines (54 loc) · 1.14 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.5"
gem "rails", "~> 7.2.1"
gem "sprockets-rails"
gem "pg", "~> 1.5"
gem "puma"
gem "jbuilder"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "bootsnap", require: false
gem "sassc-rails"
gem "counter_culture"
gem "faraday"
gem "faraday-retry"
gem "faraday-follow_redirects"
gem 'faraday-multipart'
gem "pagy"
gem "pghero"
gem "pg_query"
gem 'bootstrap'
gem "rack-attack"
gem "rack-attack-rate-limit", require: "rack/attack/rate-limit"
gem 'rack-cors'
gem 'rswag-api'
gem 'rswag-ui'
gem 'jquery-rails'
gem 'faraday-typhoeus'
gem 'sitemap_generator'
gem 'sidekiq'
gem 'sidekiq-unique-jobs'
gem 'sidekiq-status'
gem 'addressable'
gem 'appsignal'
gem "groupdate"
gem 'google-protobuf'
gem 'octokit'
gem 'redis'
gem 'rugged'
gem 'postgresql_cursor'
gem 'ostruct'
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'dotenv-rails'
end
group :development do
gem "web-console"
end
group :test do
gem "shoulda-matchers"
gem "shoulda-context"
gem "webmock"
gem "mocha"
gem "rails-controller-testing"
end