Module: OS
- Included in:
- Arcadia
- Defined in:
- lib/a-commons.rb
Class Method Summary collapse
- .arm? ⇒ Boolean
- .freebsd? ⇒ Boolean
- .linux? ⇒ Boolean
- .mac? ⇒ Boolean
- .unix? ⇒ Boolean
- .windows? ⇒ Boolean
Class Method Details
.arm? ⇒ Boolean
1396 1397 1398 |
# File 'lib/a-commons.rb', line 1396 def OS.arm? (/arm/ =~ RUBY_PLATFORM) != nil end |
.freebsd? ⇒ Boolean
1392 1393 1394 |
# File 'lib/a-commons.rb', line 1392 def OS.freebsd? (/freebsd/ =~ RUBY_PLATFORM) != nil end |
.linux? ⇒ Boolean
1388 1389 1390 |
# File 'lib/a-commons.rb', line 1388 def OS.linux? OS.unix? and not OS.mac? end |
.mac? ⇒ Boolean
1380 1381 1382 |
# File 'lib/a-commons.rb', line 1380 def OS.mac? (/darwin/ =~ RUBY_PLATFORM) != nil end |
.windows? ⇒ Boolean
1376 1377 1378 |
# File 'lib/a-commons.rb', line 1376 def OS.windows? (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil end |