-
Notifications
You must be signed in to change notification settings - Fork 7
Update dependencies #88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,11 +8,11 @@ gem 'appraisal' | |
| gem 'irb' | ||
| gem 'mail' | ||
| gem 'net-smtp' | ||
| gem 'rake', '~> 13.0' | ||
| gem 'rdoc', '~> 6.13.0' | ||
| gem 'rspec', '~> 3.0' | ||
| gem 'rake', '~> 13.3' | ||
| gem 'rdoc', '~> 7.1.0' | ||
| gem 'rspec', '~> 3' | ||
| gem 'rspec-its' | ||
| gem 'rubocop', '~> 1.21' | ||
| gem 'rubocop', '~> 1.82' | ||
|
Comment on lines
+11
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify latest versions of the gems mentioned in the review
echo "=== Checking gem versions on rubygems.org ==="
for gem in rake rdoc rspec rubocop; do
echo ""
echo "=== $gem ==="
curl -s "https://rubygems.org/api/v1/gems/$gem.json" | jq -r "{name: .name, current_version: .version, homepage: .homepage_uri}" 2>/dev/null || echo "Error fetching $gem"
done
echo ""
echo "=== Checking if rdoc 7.1.0 exists ==="
curl -s "https://rubygems.org/api/v1/versions/rdoc.json" | jq '.[] | select(.number=="7.1.0")' 2>/dev/nullRepository: mailtrap/mailtrap-ruby Length of output: 1637 🌐 Web query:
💡 Result: RDoc 7.0 (released Dec 18, 2025): notable breaking / migration-impacting changes
Practical migration steps
Sources: RDoc v7.0.0 release notes (GitHub) [1], RDoc 7.0.0 gem metadata (RubyGems) [2], Ruby news post on Aliki/RDoc 7.0+ [3], Aliki details + how to switch back/customize in 🌐 Web query:
💡 Result: RuboCop added support for the Call out rdoc 7.x breaking changes; versions are valid. All versions exist and constraints are reasonable. However, the
The 🤖 Prompt for AI Agents |
||
| gem 'rubocop-rake', require: false | ||
| gem 'rubocop-rspec', require: false | ||
| gem 'vcr' | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.