Sha256: 81123feed5d432123fdaf6408570806e6306d9d98816333007fa32ca8cea78b0
Contents?: true
Size: 1.27 KB
Versions: 118
Compression:
Stored size: 1.27 KB
Contents
module Concurrent module Utility # @!visibility private module EngineDetector def on_jruby? ruby_engine == 'jruby' end def on_jruby_9000? on_jruby? && ruby_version(JRUBY_VERSION, :>=, 9, 0, 0) end def on_cruby? ruby_engine == 'ruby' end def on_rbx? ruby_engine == 'rbx' end def on_truffleruby? ruby_engine == 'truffleruby' end def on_windows? !(RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/).nil? end def on_osx? !(RbConfig::CONFIG['host_os'] =~ /darwin|mac os/).nil? end def on_linux? !(RbConfig::CONFIG['host_os'] =~ /linux/).nil? end def ruby_engine defined?(RUBY_ENGINE) ? RUBY_ENGINE : 'ruby' end def ruby_version(version = RUBY_VERSION, comparison, major, minor, patch) result = (version.split('.').map(&:to_i) <=> [major, minor, patch]) comparisons = { :== => [0], :>= => [1, 0], :<= => [-1, 0], :> => [1], :< => [-1] } comparisons.fetch(comparison).include? result end end end # @!visibility private extend Utility::EngineDetector end
Version data entries
118 entries across 104 versions & 25 rubygems