-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
60 lines (53 loc) · 1.11 KB
/
Gemfile
File metadata and controls
60 lines (53 loc) · 1.11 KB
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"
ruby file: ".ruby-version"
# Rails components
gem "railties", "~> 8.1.1"
gem "activemodel", "~> 8.1.1"
gem "activerecord", "~> 8.1.1"
gem "actionpack", "~> 8.1.1"
gem "actionmailer", "~> 8.1.1"
gem "actionview", "~> 8.1.1"
gem "activesupport", "~> 8.1.1"
gem "secure_headers"
gem "sprockets-rails"
gem "pg"
gem "puma"
gem "jbuilder"
gem "bootsnap", require: false
gem "sassc-rails"
gem "counter_culture"
gem "faraday"
gem "faraday-retry"
gem "faraday-follow_redirects"
gem "pagy", "~> 9.4.0"
gem "pghero"
gem 'bootstrap'
gem 'bootstrap-icons', require: 'bootstrap_icons'
gem 'rack-cors'
gem 'rswag-api'
gem 'rswag-ui'
gem 'jquery-rails'
gem 'sidekiq'
gem 'sidekiq-unique-jobs'
gem 'sidekiq-status'
gem 'ostruct'
gem 'appsignal'
gem 'dotenv'
gem 'csv'
gem 'after_commit_action'
gem 'premailer-rails'
gem 'faraday-multipart'
gem 'groupdate'
group :development do
gem "web-console"
end
group :test do
gem "shoulda-matchers"
gem "shoulda-context", "~> 3.0.0.rc1"
gem "webmock"
gem "mocha"
gem "rails-controller-testing"
gem "factory_bot_rails"
gem 'faker'
gem "minitest", "~> 6"
end