1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2021-07-29 22:11:19 +02:00
parent 41e2ab88c3
commit 15d05f8120
2 changed files with 3 additions and 3 deletions

View file

@ -36,7 +36,7 @@ specs in a manner compatible with multiple Ruby implementations.
## Requirements
MSpec requires Ruby 2.5 or more recent.
MSpec requires Ruby 2.6 or more recent.
## Bundler

View file

@ -280,8 +280,8 @@ class MSpecScript
end
private def check_version!
ruby_version_is ""..."2.5" do
warn "MSpec is supported for Ruby 2.5 and above only"
ruby_version_is ""..."2.6" do
warn "MSpec is supported for Ruby 2.6 and above only"
end
end
end