Ruby

Below is an example of making an HTTP request to health.yerp.org from Ruby.

require 'net/http'
require 'uri'

Net::HTTP.get(URI.parse('http://health.yerp.org/ping/your-uuid-here'))