Sha256: ab42bff0b265fd7f18c5aeb49000d74673e9243062d2441fb7569188f4353f4c
Contents?: true
Size: 945 Bytes
Versions: 1
Compression:
Stored size: 945 Bytes
Contents
module Bunto module Utils module Platforms extend self # Provides jruby? and mri? which respectively detect these two types of # tested Engines we support, in the future we might probably support the # other one that everyone used to talk about. { :jruby? => "jruby", :mri? => "ruby" }.each do |k, v| define_method k do ::RUBY_ENGINE == v end end # Provides windows?, linux?, osx?, unix? so that we can detect # platforms. This is mostly useful for `bunto doctor` and for testing # where we kick off certain tests based on the platform. { :windows? => %r!mswin|mingw|cygwin!, :linux? => %r!linux!, \ :osx? => %r!darwin|mac os!, :unix? => %r!solaris|bsd! }.each do |k, v| define_method k do !!( RbConfig::CONFIG["host_os"] =~ v ) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bunto-3.2.1 | lib/bunto/utils/platforms.rb |