Method: MLS#ping

Defined in:
lib/mls.rb

#pingObject

Ping the MLS. If everything is configured and operating correctly "pong" will be returned. Otherwise and MLS::Exception should be thrown.

#!ruby
MLS.ping # => "pong"

MLS.ping # raises MLS::Exception::ServiceUnavailable if a 503 is returned


400
401
402
# File 'lib/mls.rb', line 400

def ping # TODO: testme
  get('/ping').body
end