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.
130 131 132 133 |
# File 'lib/disk_reporter/disk_handler.rb', line 130 def initialize self.devices = [] populate end |
Instance Attribute Details
#devices ⇒ Object
Returns the value of attribute devices.
129 130 131 |
# File 'lib/disk_reporter/disk_handler.rb', line 129 def devices @devices end |
Instance Method Details
#to_h ⇒ Object
136 137 138 |
# File 'lib/disk_reporter/disk_handler.rb', line 136 def to_h { disks: devices } end |