Fix logic for #ruby_bug · ruby/mspec@e7eb8aa (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit e7eb8aa
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -5,8 +5,8 @@ def initialize(bug, requirement) | ||
5 | 5 | @bug = bug |
6 | 6 | if String === requirement |
7 | 7 | MSpec.deprecate "ruby_bug with a single version", 'an exclusive range ("2.1"..."2.3")' |
8 | -@requirement = SpecVersion.new requirement, true | |
9 | 8 | super(FULL_RUBY_VERSION, requirement) |
9 | +@requirement = SpecVersion.new requirement, true | |
10 | 10 | else |
11 | 11 | super(FULL_RUBY_VERSION, requirement) |
12 | 12 | end |