aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-12-07 23:14:28 -0500
committerTeddy Wing2015-12-07 23:14:28 -0500
commit0388693b4cd572cba83e1cabceab45b00e6fa352 (patch)
tree244ea2a0647e263882a5a9cd5752d2ff8aaa7cdb
parent063ed1fba16137f1734ba5d58209ad143bd9bf07 (diff)
downloadRuby-Web-Sessions-Exercise-0388693b4cd572cba83e1cabceab45b00e6fa352.tar.bz2
Add app.rb
Create a dummy Sinatra app that gives a "Hello World" response from the index.
-rw-r--r--app.rb6
1 files changed, 6 insertions, 0 deletions
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