Last active
October 11, 2016 17:19
-
-
Save wmorgan/8840f3fad3227b92f70679c2ec6961d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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