2020-12-28 14:06:54 +02:00

10 lines
161 B
Markdown

# Ruby
Below is an example of making an HTTP request to SITE_NAME from Ruby.
```ruby
require 'net/http'
require 'uri'
Net::HTTP.get(URI.parse('PING_URL'))
```