Sha256: b7049f972694e5f4af5596e6775755f2a28a48b1fdf1e1e731e0b86979c93511
Contents?: true
Size: 233 Bytes
Versions: 17
Compression:
Stored size: 233 Bytes
Contents
require 'rbconfig' module Maid::Platform class << self def host_os RbConfig::CONFIG['host_os'] end def linux? !!(host_os =~ /linux/i) end def osx? !!(host_os =~ /darwin/i) end end end
Version data entries
17 entries across 17 versions & 1 rubygems