Class: DiskHandler::Parser
- Inherits:
-
Object
- Object
- DiskHandler::Parser
- Defined in:
- lib/disk_reporter/disk_handler.rb
Instance Attribute Summary collapse
-
#devices ⇒ Object
Returns the value of attribute devices.
Instance Method Summary collapse
-
#initialize ⇒ Parser
constructor
A new instance of Parser.
- #to_h ⇒ Object
Constructor Details
#initialize ⇒ Parser
Returns a new instance of Parser.
134 135 136 137 |
# File 'lib/disk_reporter/disk_handler.rb', line 134 def initialize self.devices = [] populate end |
Instance Attribute Details
#devices ⇒ Object
Returns the value of attribute devices.
133 134 135 |
# File 'lib/disk_reporter/disk_handler.rb', line 133 def devices @devices end |
Instance Method Details
#to_h ⇒ Object
139 140 141 142 143 144 145 |
# File 'lib/disk_reporter/disk_handler.rb', line 139 def to_h disks = [] devices.each do |d| disks << d.to_h end { disks: disks } end |