Class: OS::Underlying

Inherits:
Object
  • Object
show all
Defined in:
lib/os.rb

Class Method Summary collapse

Class Method Details

.bsd?Boolean

Returns:

  • (Boolean)


158
159
160
# File 'lib/os.rb', line 158

def self.bsd?
  OS.osx?
end

.linux?Boolean

Returns:

  • (Boolean)


166
167
168
# File 'lib/os.rb', line 166

def self.linux?
  OS.host_os =~ /linux/ ? true : false
end

.windows?Boolean

Returns:

  • (Boolean)


162
163
164
# File 'lib/os.rb', line 162

def self.windows?
  ENV['OS'] == 'Windows_NT'
end