mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
13 lines
227 B
Ruby
13 lines
227 B
Ruby
require_relative '../../tests/version'
|
|
|
|
module AcceptanceTests
|
|
module RubyVersionHelpers
|
|
def ruby_version
|
|
Tests::Version.new(RUBY_VERSION)
|
|
end
|
|
|
|
def ruby_gt_3_1?
|
|
ruby_version >= '3.1'
|
|
end
|
|
end
|
|
end
|