Method: Perus::Pinger::Command.description

Defined in:
lib/perus/pinger/command.rb

.description(text = nil) ⇒ Object

set or get command/metric description



44
45
46
47
48
49
50
# File 'lib/perus/pinger/command.rb', line 44

def self.description(text = nil)
    if text
        @description = text
    else
        @description
    end
end