-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
121 lines (102 loc) · 3.27 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
gemspec
gem 'asset_sync'
gem 'aws-sdk-s3', require: false
# bcrypt for secure password handling
gem 'bcrypt', '~> 3.1.20'
# Bootsnap for faster boot times
gem 'bootsnap', '>= 1.7.0', require: false
gem 'fog-aws'
# Database adapter for PostgreSQL
gem 'pg', '>= 0.18', '< 2.0'
# Puma as the app server
gem 'puma', '~> 6.4'
# Pundit for authorization, custom fork for Better Together
gem 'pundit-resources', '~> 1.1.4', github: 'better-together-org/pundit-resources'
# Core Rails gem
gem 'rack-protection'
gem 'rails', '~> 7.1.3'
# Redis for ActionCable and background jobs
gem 'redis', '~> 5.3'
gem 'rswag'
# Sidekiq for background processing
gem 'sidekiq', '~> 7.3.4'
# Error and performance monitoring with Sentry
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'stackprof'
# Storext for easier json attributes, custom fork for Better Together
gem 'storext', github: 'better-together-org/storext'
# Uglifier for JavaScript compression
gem 'uglifier', '>= 1.3.0'
group :development, :test do
# Better errors for enhanced error pages
gem 'better_errors'
# Binding of caller provides pry console at breakpoints
gem 'binding_of_caller'
# Debugger tool
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Faker for generating fake data
gem 'faker'
# FactoryBot for setting up test data
gem 'factory_bot_rails'
# Fuubar for fancy test progress bar
gem 'fuubar'
# Help with managing translation databasde
gem 'i18n-tasks', '~> 1.0.12'
# Pry for a powerful shell alternative to IRB
gem 'pry'
# RuboCop for static code analysis
gem 'rubocop'
end
group :development do
# Brakeman for static analysis security vulnerability scanning
gem 'brakeman', require: false
# Bundler audit for checking gem vulnerabilities
gem 'bundler-audit', require: false
# Facilitate I18n translation management
gem 'i18n_generators'
gem 'easy_translate'
# Listen for file system changes
gem 'listen', '>= 3.0.5', '< 3.10'
# Rack mini profiler for performance profiling
gem 'rack-mini-profiler'
# Readline implementation for Ruby
gem 'rb-readline'
# Spring for fast Rails actions via pre-loading
gem 'spring'
# Spring watcher for file changes
gem 'spring-watcher-listen', '~> 2.1.0'
# Tracing tool
gem 'rbtrace'
# Web-console for an interactive console on exception pages
gem 'web-console', '>= 3.3.0'
end
group :test do
# Capybara for integration testing
gem 'capybara', '>= 2.15'
# Coveralls for test coverage reporting
gem 'coveralls_reborn', require: false
# Database cleaner for test database cleaning
gem 'database_cleaner'
gem 'database_cleaner-active_record'
# # Easy installation and use of chromedriver to run system tests with Chrome
gem 'webdrivers'
# RuboCop RSpec for RSpec-specific code analysis
gem 'rubocop-rspec'
# RSpec for unit testing
gem 'rspec'
# RSpec Rails integration
gem 'rspec-rails'
# Selenium WebDriver for browser automation
gem 'selenium-webdriver'
# Shoulda Callback Matchers for testing callbacks
gem 'shoulda-callback-matchers'
# Shoulda Matchers for simplifying model tests
gem 'shoulda-matchers'
# SimpleCov for test coverage analysis
gem 'simplecov', require: false
end