summaryrefslogtreecommitdiff
path: root/spec/support/ruby_version_check.rb
blob: 8261a8ec656a400ec646ca5ce60b27ba7f6924d7 (plain)
1
2
3
4
5
6
module RubyVersionCheck
  def with_minimum_ruby(version)
    yield if Hashie::Extensions::RubyVersion.new(RUBY_VERSION) >=
             Hashie::Extensions::RubyVersion.new(version)
  end
end