mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2024-12-26 09:59:18 +01:00
sinatra says hi
This commit is contained in:
parent
5334f96032
commit
e2d5aee48b
3 changed files with 24 additions and 0 deletions
1
Gemfile
Normal file
1
Gemfile
Normal file
|
@ -0,0 +1 @@
|
|||
gem 'sinatra'
|
16
Gemfile.lock
Normal file
16
Gemfile.lock
Normal file
|
@ -0,0 +1,16 @@
|
|||
GEM
|
||||
specs:
|
||||
rack (1.5.2)
|
||||
rack-protection (1.5.3)
|
||||
rack
|
||||
sinatra (1.4.5)
|
||||
rack (~> 1.4)
|
||||
rack-protection (~> 1.4)
|
||||
tilt (~> 1.3, >= 1.3.4)
|
||||
tilt (1.4.1)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
sinatra
|
7
app.rb
Normal file
7
app.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
# encoding: utf-8
|
||||
|
||||
require 'sinatra'
|
||||
|
||||
get '/' do
|
||||
'OH HAI!'
|
||||
end
|
Loading…
Reference in a new issue