Module: Hashie::Extensions::RubyVersionCheck::ClassMethods

Defined in:
lib/hashie/extensions/ruby_version_check.rb

Instance Method Summary collapse

Instance Method Details

#with_minimum_ruby(version) ⇒ Object



11
12
13
# File 'lib/hashie/extensions/ruby_version_check.rb', line 11

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