-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
91 lines (65 loc) · 2.2 KB
/
Gemfile
File metadata and controls
91 lines (65 loc) · 2.2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.4.1'
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 7.2.2', '>= 7.2.2.1'
gem 'shakapacker'
# Use mysql as the database for Active Record
gem 'mysql2', '~> 0.5.7'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '>= 5.0'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails'
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem 'jbuilder'
# Use Redis adapter
gem 'redis', '>= 4.0.1'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mswin mswin64 mingw x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
gem 'sidekiq'
# Aws S3 SDK for Ruby
gem 'aws-sdk-s3', '~> 1.0'
# Temporary file downloads over HTTP
gem 'down'
# RSwag for API documentation
gem 'rswag-api'
gem 'rswag-ui'
gem 'image_processing'
# Alt-text generation
gem 'alt_text', '~> 0.2'
# PDF page counting
gem 'pdf-reader'
# Logging & Health Checks!
gem 'okcomputer', '~> 1.18.0'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[mri mswin mswin64 mingw x64_mingw], require: 'debug/prelude'
gem 'niftany'
gem 'rspec-rails'
# Use Capybara for feature/system tests
gem 'capybara'
gem 'selenium-webdriver'
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem 'rubocop-rails-omakase', require: false
# RSwag API documentation testing
gem 'rswag-specs'
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'
# Highlight the fine-grained location where an error occurred [https://github.com/ruby/error_highlight]
gem 'error_highlight', '>= 0.4.0', platforms: [:ruby]
end
group :test do
gem 'climate_control'
gem 'factory_bot_rails'
gem 'shoulda-matchers'
end
gem 'rails_admin'
gem 'omniauth', '~> 2.0'
gem 'omniauth_openid_connect', '~> 0.6'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'bugsnag', '~> 6.28'
gem 'sassc-rails'