class Bow::Commands::Ping

Public Instance Methods

description() click to toggle source
# File lib/bow/commands/ping.rb, line 6
def description
  'Check connectivity to all given hosts.'
end
run() click to toggle source
# File lib/bow/commands/ping.rb, line 10
def run
  @argv << 'echo pong'
  Exec.new(@app, @argv).run
end