module Hashie::Extensions::RubyVersionCheck::ClassMethods

def with_minimum_ruby(version)

def with_minimum_ruby(version)
  yield if RubyVersion.new(RUBY_VERSION) >= RubyVersion.new(version)
end