Method: Platform#name
- Defined in:
- lib/platform/platform.rb
#name ⇒ Object
Public : Gets the name for the dut.
Returns the String device name.
364 365 366 367 368 369 |
# File 'lib/platform/platform.rb', line 364 def name if @name.nil? @name = config['name'] end @name end |