Skip to content

Instantly share code, notes, and snippets.

View rocketbop's full-sized avatar

Paul Byrne rocketbop

View GitHub Profile
url = "ourlittlesecreturl.com"
while url do
res = RestClient.get(url, { accept: :json })
body = JSON.parse(res.body);
url = body["follow"]
message = body["message"]
puts message, url
end