Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source 'https://rubygems.org'

gem 'coffee-rails', '~> 4.1.0'
gem 'pg'
gem 'rails'
gem 'rails', '>= 7.1.5.2'
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

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

Using '>=' version constraint for a major version upgrade (Rails 5.x to 7.x) can introduce breaking changes unexpectedly. Consider using a more restrictive constraint like '~> 7.1.5' to prevent automatic upgrades to Rails 8.x which may have additional breaking changes.

Suggested change
gem 'rails', '>= 7.1.5.2'
gem 'rails', '~> 7.1.5.2'

Copilot uses AI. Check for mistakes.
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'

Expand All @@ -20,8 +20,8 @@ gem 'dotenv-rails', groups: %i[development test]
gem 'dragonfly', '~> 1.0.12'
gem 'dragonfly-s3_data_store'
gem 'image_size'
gem 'rails_admin'
gem 'sequenced'
gem 'rails_admin', '>= 3.0.0'
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

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

Using '>=' version constraint for rails_admin allows automatic upgrades to any future major version. Consider using '~> 3.0' to prevent breaking changes from potential 4.x releases.

Suggested change
gem 'rails_admin', '>= 3.0.0'
gem 'rails_admin', '~> 3.0'

Copilot uses AI. Check for mistakes.
gem 'sequenced', '>= 3.2.0'
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

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

Using '>=' version constraint for sequenced allows automatic upgrades to any future major version. Consider using '~> 3.2' to prevent breaking changes from potential 4.x releases.

Suggested change
gem 'sequenced', '>= 3.2.0'
gem 'sequenced', '~> 3.2'

Copilot uses AI. Check for mistakes.

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
Expand Down