Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ gem 'syntax_suggest'
gem 'tempfile'
gem 'terminal-table'
gem 'test-unit'
gem 'thor'
gem 'thor', '>= 1.4.0'
Copy link

Copilot AI Jul 22, 2025

Choose a reason for hiding this comment

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

The version constraint '>= 1.4.0' allows any future version of thor, which could introduce breaking changes in major version upgrades. Consider using a more restrictive constraint like '~> 1.4.0' to limit to compatible patch/minor versions within the 1.x series.

Suggested change
gem 'thor', '>= 1.4.0'
gem 'thor', '~> 1.4.0'

Copilot uses AI. Check for mistakes.
gem 'time'
gem 'timeout'
gem 'tmpdir'
Expand Down
Loading