Class: OS::Underlying

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

Class Method Summary collapse

Class Method Details

.bsd?Boolean

Returns:

  • (Boolean)


174
175
176
# File 'lib/os.rb', line 174

def self.bsd?
  OS.osx?
end

.docker?Boolean

Returns:

  • (Boolean)


186
187
188
# File 'lib/os.rb', line 186

def self.docker?
  system('grep -q docker /proc/self/cgroup') if OS.linux?
end

.linux?Boolean

Returns:

  • (Boolean)


182
183
184
# File 'lib/os.rb', line 182

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

.windows?Boolean

Returns:

  • (Boolean)


178
179
180
# File 'lib/os.rb', line 178

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