From 0388693b4cd572cba83e1cabceab45b00e6fa352 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 7 Dec 2015 23:14:28 -0500 Subject: Add app.rb Create a dummy Sinatra app that gives a "Hello World" response from the index. --- app.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app.rb diff --git a/app.rb b/app.rb new file mode 100644 index 0000000..baa9640 --- /dev/null +++ b/app.rb @@ -0,0 +1,6 @@ +require 'sinatra' + + +get '/' do + 'Hello World' +end -- cgit v1.2.3