forked from GithubBackups/healthchecks
10 lines
161 B
Markdown
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'))
|
|
``` |