-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (50 loc) · 1.9 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.3.1'
gem 'rails', '~> 8.0.1'
gem 'bcrypt' # Use Active Model has_secure_password
gem 'bootsnap', require: false # Reduces boot times through caching; required in config/boot.rb
gem 'feedjira' # Parse RSS feeds
gem 'good_job' # Multithreaded, Postgres-based, ActiveJob backend for Ruby on Rails
gem 'image_processing' # Use Active Storage variants
gem 'pagy' # Use pagy for pagination
gem 'pg' # Use postgresql as the database for Active Record
gem 'puma' # Use the Puma web server [https://github.com/puma/puma]
gem 'pundit' # Use pundit for easy authorization
gem 'turbo-rails' # Use Turbo for progressive enhancement of requests
gem 'view_component' # Use ViewComponent to replace partials
gem 'vite_rails' # Use ViteRails to compile assets
group :production do
# Report issues in production
gem 'sentry-rails'
gem 'sentry-ruby'
end
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[mri mingw x64_mingw]
end
group :development do
gem 'annotaterb', require: false
gem 'brakeman', require: false
gem 'erb_lint'
gem 'pgreset' # Easily reset the database while connections are active
gem 'rack-mini-profiler' # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'ruby-lsp'
gem 'ruby-lsp-rails'
gem 'web-console' # Use console on exceptions pages [https://github.com/rails/web-console]
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara'
gem 'factory_bot_rails'
gem 'faker'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'simplecov-cobertura'
gem 'webmock'
end