Skip to content

Commit aa99ce8

Browse files
author
Kevin Gisi
committed
Initial
0 parents  commit aa99ce8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

app.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
require 'rubygems'
2+
require 'sinatra'
3+
4+
get '/' do
5+
"Hello, world!"
6+
end

config.ru

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
require 'rubygems'
2+
require 'app'
3+
4+
run Sinatra.application

0 commit comments

Comments
 (0)