-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
80 lines (73 loc) · 3.74 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
# Authorization framework for Ruby/Rails applications [https://github.com/palkan/action_policy]
gem "action_policy", "0.6.7"
# Simple validations for Active Storage [https://github.com/igorkasyanchuk/active_storage_validations]
gem "active_storage_validations", "1.1.4"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "1.12.0", require: false
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails", "1.1.1"
# Flexible authentication solution for Rails with Warden [https://github.com/heartcombo/devise]
gem "devise", "4.8.1"
# High-level image processing wrapper for libvips and ImageMagick/GraphicsMagick [https://github.com/janko/image_processing]
gem "image_processing", "1.12.2"
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails", "1.0.3"
# Lookbook provides UI for view component previews [https://github.com/allmarkedup/lookbook]
gem "lookbook", "0.9.1"
# Use postgresql as the database for Active Record
gem "pg", "1.5.4"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "5.6.4"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "7.0.8"
# Use Redis adapter to run Action Cable in production
gem "redis", "5.0.8"
# Composable service objects [https://github.com/sunny/actor]
gem "service_actor", "3.2.0"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails", "3.4.2"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails", "1.0.4"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails", "1.1.1"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", "2.0.4", platforms: %i[mingw mswin x64_mingw jruby]
# A framework for building reusable, testable & encapsulated view components in Ruby on Rails [https://github.com/github/view_component]
gem "view_component", "2.53.0"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", "1.9.1", platforms: %i[mri mingw x64_mingw]
# To help fixture creation [https://github.com/thoughtbot/factory_bot_rails]
gem "factory_bot_rails", "6.4.3"
# Provides RSpec-compatible one-liners to test common Rails functionality [https://github.com/thoughtbot/shoulda-matchers]
gem "shoulda-matchers", "6.0.0"
end
group :development do
# Linter to ERB or HTML files [https://github.com/Shopify/erb-lint]
gem "erb_lint", "0.5.0", require: false
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
gem "rack-mini-profiler", "3.0.0"
# To ensure code consistency [https://docs.rubocop.org]
gem "rubocop", "1.59.0"
gem "rubocop-performance", "1.20.1"
gem "rubocop-rails", "2.23.1"
gem "rubocop-rspec", "2.25.0"
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console", "4.2.1"
end
group :test do
# Acceptance test framework for web applications [https://github.com/teamcapybara/capybara]
gem "capybara", "3.39.2"
# Framework library to test our code [https://github.com/rspec/rspec-rails/]
gem "rspec-rails", "5.1.2"
# Limited DevTools interactions for Selenium WebDriver [https://rubygems.org/gems/selenium-devtools]
gem "selenium-devtools", "0.120.0"
# A browser automation framework and ecosystem [https://github.com/SeleniumHQ/selenium]
gem "selenium-webdriver", "4.16.0"
end