1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Removed a useless guard

MSpec requires Ruby 2.4 or more recent.
This commit is contained in:
Nobuyoshi Nakada 2020-02-09 12:12:07 +09:00
parent 2173ae7801
commit 92c86e39de
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -1,6 +1,6 @@
require 'mspec/guards/version'
if RUBY_ENGINE == "ruby" and ruby_version_is("2.4")
if RUBY_ENGINE == "ruby"
ruby_version_is "2.4"..."2.5" do
# Kernel#warn does not delegate to Warning.warn in 2.4
module Kernel