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 @@ -2,12 +2,12 @@ ruby '>= 2.5'
source 'https://rubygems.org'

# Middleman
gem 'middleman', '~> 4.4'
gem 'middleman-syntax', '~> 3.2'
gem 'middleman', '~> 4.4', '>= 4.4.2'
Copy link

Copilot AI Jul 14, 2025

Choose a reason for hiding this comment

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

[nitpick] Consider simplifying the version constraint to "> 4.4.2" instead of combining "> 4.4" and ">= 4.4.2" for clarity and conciseness.

Suggested change
gem 'middleman', '~> 4.4', '>= 4.4.2'
gem 'middleman', '~> 4.4.2'

Copilot uses AI. Check for mistakes.
gem 'middleman-syntax', '~> 3.3', '>= 3.3.0'
Copy link

Copilot AI Jul 14, 2025

Choose a reason for hiding this comment

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

[nitpick] Consider simplifying this constraint to "> 3.3.0" since "> 3.3" already implies ">= 3.3.0" and < 4.0 for better readability.

Suggested change
gem 'middleman-syntax', '~> 3.3', '>= 3.3.0'
gem 'middleman-syntax', '~> 3.3.0'

Copilot uses AI. Check for mistakes.
gem 'middleman-autoprefixer', '~> 3.0'
gem 'middleman-sprockets', '~> 4.1'
gem 'rouge', '~> 3.21'
gem 'redcarpet', '~> 3.5.0'
gem 'nokogiri', '~> 1.12.1'
gem 'sass'
gem 'webrick'
gem 'webrick', '>= 1.8.2'
Copy link

Copilot AI Jul 14, 2025

Choose a reason for hiding this comment

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

[nitpick] To prevent future breaking updates, you may want to specify a pessimistic constraint like "~> 1.8.2" which caps the upper version range.

Suggested change
gem 'webrick', '>= 1.8.2'
gem 'webrick', '~> 1.8.2'

Copilot uses AI. Check for mistakes.