Module: KPM::SystemProxy::OS
- Defined in:
- lib/kpm/system_helpers/system_proxy.rb
Class Method Summary collapse
Class Method Details
.linux? ⇒ Boolean
22 23 24 |
# File 'lib/kpm/system_helpers/system_proxy.rb', line 22 def OS.linux? OS.unix? and not OS.mac? end |
.mac? ⇒ Boolean
14 15 16 |
# File 'lib/kpm/system_helpers/system_proxy.rb', line 14 def OS.mac? (/darwin/ =~ RbConfig::CONFIG["host_os"]) != nil end |
.unix? ⇒ Boolean
18 19 20 |
# File 'lib/kpm/system_helpers/system_proxy.rb', line 18 def OS.unix? !OS.windows? end |
.windows? ⇒ Boolean
10 11 12 |
# File 'lib/kpm/system_helpers/system_proxy.rb', line 10 def OS.windows? (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RbConfig::CONFIG["host_os"]) != nil end |