From a891c127009c0ab1968279dcdc8ef94db36664d6 Mon Sep 17 00:00:00 2001 From: paolo Date: Tue, 7 Nov 2023 16:27:23 +0100 Subject: [PATCH] Adding the simplest hello world sinatra application --- spec/support/sinatra_hello_app.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 spec/support/sinatra_hello_app.rb diff --git a/spec/support/sinatra_hello_app.rb b/spec/support/sinatra_hello_app.rb new file mode 100644 index 0000000..9f6f35e --- /dev/null +++ b/spec/support/sinatra_hello_app.rb @@ -0,0 +1,7 @@ +# From the sinatra website + +require 'sinatra' + +get '/' do + 'Hello world!' +end