1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/spec/support/acceptance/helpers/ruby_version_helpers.rb
2022-08-05 14:56:52 -03:00

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