From c50a140f3acab8b3a37a700331ee099625889d41 Mon Sep 17 00:00:00 2001 From: Karel Minarik Date: Mon, 7 Sep 2009 23:10:59 +0200 Subject: [PATCH] Adding simple "Hello World" Sinatra application NOTE: We are deliberately reversing the proper TDD sequence for "test-after" one, for the purpose of this demonstration --- application.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/application.rb b/application.rb index e69de29..2ad26f3 100644 --- a/application.rb +++ b/application.rb @@ -0,0 +1,6 @@ +require 'rubygems' +require 'sinatra' + +get '/' do + "Hello, World!" +end -- 2.11.4.GIT