Skip to content

Commit 6427b88

Browse files
authored
Merge pull request #7 from Kytozz/suppress-unnecessary-deprecation-warning
Suppress unnecessary deprecation warning for Ruby v3.1.
2 parents eda98ff + b09ebc9 commit 6427b88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rspec/parameterized/table_syntax.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
module RSpec
1010
module Parameterized
1111
module TableSyntax
12-
if Gem::Version.create(RUBY_VERSION) >= Gem::Version.create("3.2.0.rc1")
12+
if Gem::Version.create(RUBY_VERSION) >= Gem::Version.create('3.1.0')
1313
refine Object do
1414
import_methods TableSyntaxImplement
1515
end

0 commit comments

Comments
 (0)