diff options
| author | Teddy Wing | 2015-12-07 23:14:28 -0500 |
|---|---|---|
| committer | Teddy Wing | 2015-12-07 23:14:28 -0500 |
| commit | 0388693b4cd572cba83e1cabceab45b00e6fa352 (patch) | |
| tree | 244ea2a0647e263882a5a9cd5752d2ff8aaa7cdb | |
| parent | 063ed1fba16137f1734ba5d58209ad143bd9bf07 (diff) | |
| download | Ruby-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.rb | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +require 'sinatra' + + +get '/' do + 'Hello World' +end |
