Skip to content

Commit

Permalink
Adding the simplest hello world sinatra application
Browse files Browse the repository at this point in the history
  • Loading branch information
paolo committed Nov 7, 2023
1 parent fb3a4d0 commit a891c12
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions spec/support/sinatra_hello_app.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# From the sinatra website

require 'sinatra'

get '/' do
'Hello world!'
end

0 comments on commit a891c12

Please sign in to comment.