Sha256: 1000b45f2b71759a0eb08c9d26a1017befce508ae51c8ca0081c1a9cef4f83ad
Contents?: true
Size: 464 Bytes
Versions: 18
Compression:
Stored size: 464 Bytes
Contents
# frozen_string_literal: true # module OS # def OS.windows? # (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil # end # # def OS.mac? # (/darwin/ =~ RUBY_PLATFORM) != nil # end # # def OS.unix? # !OS.windows? # end # # def OS.linux? # OS.unix? and !OS.mac? and !OS.opal? # end # # def OS.jruby? # RUBY_ENGINE == 'jruby' # end # # def OS.opal? # RUBY_ENGINE == 'opal' # end # end # # # alert OS.linux?
Version data entries
18 entries across 18 versions & 1 rubygems