Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@
!/app/assets/builds/.keep

node_modules/

# Sorbet autogenerated scratch files
.sorbet-rbi-cache/

# Sorbet typecheck output
.sorbet/
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ gem "view_component"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"

# OpenSSL for tapioca support - https://github.com/Shopify/tapioca/issues/2156#issuecomment-3605679933
Copy link

Copilot AI Dec 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment references a GitHub issue comment ID that appears to be in the future (3605679933 is an unusually high number). Please verify this URL is correct and accessible, as it may be a typo or placeholder.

Suggested change
# OpenSSL for tapioca support - https://github.com/Shopify/tapioca/issues/2156#issuecomment-3605679933
# OpenSSL for tapioca support - see https://github.com/Shopify/tapioca/issues/2156

Copilot uses AI. Check for mistakes.
gem "openssl", "~> 3.3.1"

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri windows], require: "debug/prelude"
Expand All @@ -69,6 +72,11 @@ end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"

# Tapioca and Sorbet for type checking [https://sorbet.org/]
gem "sorbet"
gem "sorbet-runtime"
gem "tapioca", "0.17.9", require: false
end

group :test do
Expand Down
Loading