-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathGemfile
More file actions
91 lines (83 loc) · 2.71 KB
/
Gemfile
File metadata and controls
91 lines (83 loc) · 2.71 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 file: '.ruby-version'
gem 'rails', '~> 8.1.3'
# Gems
gem 'activeadmin', '~> 3.5'
gem 'active_storage_base64', '~> 3.0.1'
gem 'aws-sdk-s3', '~> 1.216', require: false
gem 'bootsnap', '~> 1.23'
gem 'cssbundling-rails', '~> 1.4'
gem 'devise', '~> 4.9'
gem 'devise_token_auth', '~> 1.2', '>= 1.2.6'
gem 'draper', '~> 4.0'
gem 'flipper', '~> 1.4.0'
gem 'flipper-active_record', '~> 1.4.0'
gem 'flipper-ui', '~> 1.4.0'
gem 'good_job', '~> 4.13.3'
gem 'jbuilder', '~> 2.14'
gem 'jsbundling-rails', '~> 1.3'
gem 'lograge', '~> 0.14'
gem 'newrelic_rpm', '~> 10.2'
# Adding ostruct until rswag-ui gem v3 is released
# https://github.com/rswag/rswag/pull/790#issuecomment-3710836151
gem 'ostruct', '~> 0.6'
gem 'pagy', '~> 43.4'
gem 'pg', '~> 1.6'
gem 'puma', '~> 7.2'
gem 'pundit', '~> 2.5'
gem 'rack-cors', '~> 3.0'
gem 'rswag-api', '~> 2.17.0'
gem 'rswag-ui', '~> 2.17.0'
gem 'sprockets-rails', '~> 3.5', '>= 3.5.2'
gem 'strong_migrations', '~> 2.5'
gem 'yaaf', '~> 3.1'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
group :development, :test do
gem 'annotaterb', '~> 4.22.0'
gem 'chaotic_order', '~> 0.1.0'
gem 'dotenv-rails', '~> 3.2.0'
gem 'factory_bot_rails', '~> 6.5'
gem 'faker', '~> 3.6'
gem 'pry-byebug', '~> 3.12', platform: :mri
gem 'pry-rails', '~> 0.3.11'
gem 'rspec-rails', '~> 8.0'
end
group :development do
gem 'brakeman', '~> 8.0'
gem 'i18n-tasks', '~> 1.1.2'
gem 'letter_opener', '~> 1.10'
gem 'listen', '~> 3.10'
gem 'rails_best_practices', '~> 1.23'
gem 'reek', '~> 6.5'
gem 'rubocop', '~> 1.85', require: false
gem 'rubocop-capybara', '~> 2.22'
gem 'rubocop-factory_bot', '~> 2.28', require: false
gem 'rubocop-performance', '~> 1.26', require: false
gem 'rubocop-rails', '~> 2.34', require: false
gem 'rubocop-rake', '~> 0.7.1', require: false
gem 'rubocop-rspec', '~> 3.9', require: false
gem 'rubocop-rspec_rails', '~> 2.32.0', require: false
end
group :test do
gem 'capybara', '~> 3.40'
gem 'faraday-retry', '~> 2.4'
gem 'knapsack', '~> 4.0'
gem 'octokit', '~> 10.0'
gem 'parallel_tests', '~> 5.6'
gem 'pg_query', '~> 6.2.2'
gem 'prosopite', '~> 2.1.2'
gem 'rspec-openapi', '~> 0.25'
gem 'rspec-retry', github: 'rootstrap/rspec-retry', branch: 'add-intermittent-callback'
gem 'selenium-webdriver', '~> 4.41.0'
gem 'shoulda-matchers', '~> 7.0'
gem 'simplecov', '~> 0.22.0', require: false
gem 'webmock', '~> 3.26'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]