-
Notifications
You must be signed in to change notification settings - Fork 48
/
Gemfile
91 lines (63 loc) · 3.34 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
source 'https://rubygems.org'
ruby '~> 3.3'
# Full-stack web application framework. (https://rubyonrails.org)
gem 'rails', '~> 8.0.0'
# Pg is the Ruby interface to the PostgreSQL RDBMS (https://github.com/ged/ruby-pg)
gem 'pg', '>= 0.18', '< 2.0'
# A Ruby/Rack web server built for parallelism. (https://puma.io)
gem 'puma', '>= 5.0'
# Use Vite in Rails and bring joy to your JavaScript experience (https://github.com/ElMassimo/vite_ruby)
gem 'vite_rails'
# Create JSON structures via a Builder-style DSL (https://github.com/rails/jbuilder)
gem 'jbuilder'
# High-level wrapper for processing images for the web with ImageMagick or libvips. (https://github.com/janko/image_processing)
gem 'image_processing', '~> 1.2'
# Boot large ruby/rails apps faster (https://github.com/Shopify/bootsnap)
gem 'bootsnap', require: false
# Brings Rails named routes to javascript (http://github.com/railsware/js-routes)
gem 'js-routes'
# Tame Rails' multi-line logging into a single line per request (https://github.com/roidrage/lograge)
gem 'lograge'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
# Debugging functionality for Ruby (https://github.com/ruby/debug)
gem 'debug', platforms: %i[mri windows], require: 'debug/prelude'
# Security vulnerability scanner for Ruby on Rails. (https://brakemanscanner.org)
gem 'brakeman', require: false
# Automatic Ruby code style checking tool. (https://github.com/rubocop/rubocop)
gem 'rubocop', require: false
# Automatic performance checking tool for Ruby code. (https://github.com/rubocop/rubocop-performance)
gem 'rubocop-performance', require: false
# Automatic Rails code style checking tool. (https://github.com/rubocop/rubocop-rails)
gem 'rubocop-rails', require: false
# Code style checking for Capybara test files (https://github.com/rubocop/rubocop-capybara)
gem 'rubocop-capybara', require: false
# Code style checking for factory_bot files (https://github.com/rubocop/rubocop-factory_bot)
gem 'rubocop-factory_bot', require: false
# factory_bot_rails provides integration between factory_bot and rails 5.0 or newer (https://github.com/thoughtbot/factory_bot_rails)
gem 'factory_bot_rails'
end
group :development do
# A debugging tool for your Ruby on Rails applications. (https://github.com/rails/web-console)
gem 'web-console'
end
group :test do
# Capybara aims to simplify the process of integration testing Rack applications, such as Rails, Sinatra or Merb (https://github.com/teamcapybara/capybara)
gem 'capybara'
# Selenium is a browser automation tool for automated testing of webapps and more (https://selenium.dev)
gem 'selenium-webdriver'
end
# Timezone Data for TZInfo (https://tzinfo.github.io)
gem 'tzinfo-data', platforms: %i[windows jruby]
# Inertia.js adapter for Rails (https://github.com/inertiajs/inertia-rails)
gem 'inertia_rails', '>= 1.2.2'
# Easily generate fake data (https://github.com/faker-ruby/faker)
gem 'faker', require: false
# The best pagination ruby gem (https://github.com/ddnexus/pagy)
gem 'pagy'
# Flexible authentication solution for Rails with Warden (https://github.com/heartcombo/devise)
gem 'devise'
# A fast JSON parser and serializer. (http://www.ohler.com/oj)
gem 'oj'
# Simple authorization solution for Rails. (https://github.com/CanCanCommunity/cancancan)
gem 'cancancan'