Method: LinuxSystemInfo.all

Defined in:
lib/LinuxSystemInfo.rb

.allObject



46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/LinuxSystemInfo.rb', line 46

def all
  {
    :info       => info,
    :hostname   => hostname,
    :cpu        => { info: cpu, usage: cpu_usage },
    :ram        => memory,
    :storage    => storage,
    :network    => network,
    :connection => connection,
    :video      => video,
    :audio      => audio,
    :usb        => usb
  }
end