Skip to content

Instantly share code, notes, and snippets.

@wmorgan
Last active October 11, 2016 17:19
Show Gist options
  • Save wmorgan/8840f3fad3227b92f70679c2ec6961d6 to your computer and use it in GitHub Desktop.
Save wmorgan/8840f3fad3227b92f70679c2ec6961d6 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'sinatra'
require 'open-uri'
get '/' do
result = open("http://webapp/hello").read
"#{result}\nDisclaimer: above statement may not actually be true.\n"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment